blob: 469ad8b1652ba9b4911155abc24e131aeb4f11a4 [file] [edit]
#include <ctype.h>
char *strupr(char *str)
{
char *ret = str;
while(*str)
{
*str = toupper(*str);
++str;
}
return ret;
}