Corretta formattazione

git-svn-id: svn://10.65.10.50/trunk@2161 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 1995-11-16 11:34:57 +00:00
parent f88e875169
commit 49901509f4

View File

@ -1,9 +1,9 @@
#include <ctype.h> #include <ctype.h>
char* CUpString(char* s) char* CUpString(char* s)
{ {
char* c; char* c;
for (c = s; *c; c++) for (c = s; *c; c++)
*c = toupper(*c); *c = toupper(*c);
return s; return s;
} }