49901509f4
git-svn-id: svn://10.65.10.50/trunk@2161 c028cbd2-c16b-5b4b-a496-9718f37d4682
10 lines
135 B
C
Executable File
10 lines
135 B
C
Executable File
#include <ctype.h>
|
|
|
|
char* CUpString(char* s)
|
|
{
|
|
char* c;
|
|
for (c = s; *c; c++)
|
|
*c = toupper(*c);
|
|
return s;
|
|
}
|