Fix strupr implementation

This commit is contained in:
NoiTaTuM 2017-01-11 12:48:21 -03:00 committed by Christoph Oelckers
parent d8bee03707
commit 8cdbc5ce24

View file

@ -58,7 +58,7 @@ static char* strupr(char* str)
{ {
for (char* ch = str; '\0' != *ch; ++ch) for (char* ch = str; '\0' != *ch; ++ch)
{ {
*ch = tolower(*ch); *ch = toupper(*ch);
} }
return str; return str;