reactos/reactos/lib/string/strupr.c
2005-09-08 04:27:02 +00:00

17 lines
158 B
C

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