mirror of
https://github.com/ZDoom/wadext.git
synced 2024-11-22 03:41:32 +00:00
Fix strupr implementation
This commit is contained in:
parent
d8bee03707
commit
8cdbc5ce24
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue