reactos/reactos/lib/string/strupr.c

18 lines
158 B
C
Raw Normal View History

#include <string.h>
#include <ctype.h>
/*
* @implemented
*/
char *_strupr(char *x)
{
char *y=x;
while (*y) {
*y=toupper(*y);
y++;
}
return x;
}