Changed the naming convention for public member variables/functions and free functions (using lowerCase instead of UpperCase)

This commit is contained in:
Laurent Gomila 2012-03-11 19:10:37 +01:00
parent ff5b69d312
commit 14ac411542
200 changed files with 4302 additions and 4320 deletions

View file

@ -11,8 +11,8 @@
// Function prototypes
// (I'm too lazy to put them into separate headers...)
////////////////////////////////////////////////////////////
void DoClient(unsigned short port);
void DoServer(unsigned short port);
void doClient(unsigned short port);
void doServer(unsigned short port);
////////////////////////////////////////////////////////////
@ -34,12 +34,12 @@ int main()
if (who == 's')
{
// Run as a server
DoServer(port);
doServer(port);
}
else
{
// Run as a client
DoClient(port);
doClient(port);
}
// Wait until the user presses 'enter' key