Commit 09e6aa4b authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

ntdll: Use RtlUpperChar in _strupr implementation.

parent bb99ba74
......@@ -306,7 +306,7 @@ int __cdecl _stricmp( LPCSTR str1, LPCSTR str2 )
LPSTR __cdecl _strupr( LPSTR str )
{
LPSTR ret = str;
for ( ; *str; str++) *str = toupper(*str);
for ( ; *str; str++) *str = RtlUpperChar(*str);
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment