campo-sirio/include/upstring.c

10 lines
135 B
C
Raw Normal View History

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