Style normalizations: Removed CRs and hard TABs mostly.

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@337 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
rkrolib 2003-11-11 11:18:16 +00:00
parent 864ea93df3
commit 48f65ac54d

View File

@ -209,7 +209,8 @@ void SampleReshape( int nWidth, int nHeight )
*/ */
void SampleKeyboard( unsigned char cChar, int nMouseX, int nMouseY ) void SampleKeyboard( unsigned char cChar, int nMouseX, int nMouseY )
{ {
printf( "SampleKeyboard(): keypress '%c' at (%i,%i)\n", cChar, nMouseX, nMouseY ); printf( "SampleKeyboard(): keypress '%c' at (%i,%i)\n",
cChar, nMouseX, nMouseY );
} }
/* /*
@ -227,7 +228,8 @@ void SampleGameModeKeyboard( unsigned char cChar, int nMouseX, int nMouseY )
*/ */
void SampleSpecial( int nSpecial, int nMouseX, int nMouseY ) void SampleSpecial( int nSpecial, int nMouseX, int nMouseY )
{ {
printf( "SampleSpecial(): special keypress %i at (%i,%i)\n", nSpecial, nMouseX, nMouseY ); printf( "SampleSpecial(): special keypress %i at (%i,%i)\n",
nSpecial, nMouseX, nMouseY );
} }
/* /*
@ -321,7 +323,7 @@ int main( int argc, char** argv )
/* /*
* This is never reached in FreeGLUT. Is that good? * This is never reached in FreeGLUT. Is that good?
*/ */
return( EXIT_SUCCESS ); return EXIT_SUCCESS;
} }
/*** END OF FILE ***/ /*** END OF FILE ***/