Commit 975801cc authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Don't forward towupper and towlower to ntdll.

parent b6265562
......@@ -1453,8 +1453,8 @@
# stub tmpnam_s(ptr long)
@ cdecl tolower(long) MSVCRT_tolower
@ cdecl toupper(long) MSVCRT_toupper
@ cdecl towlower(long) ntdll.towlower
@ cdecl towupper(long) ntdll.towupper
@ cdecl towlower(long) MSVCRT_towlower
@ cdecl towupper(long) MSVCRT_towupper
@ cdecl ungetc(long ptr) MSVCRT_ungetc
@ cdecl ungetwc(long ptr) MSVCRT_ungetwc
# stub utime
......
......@@ -1592,9 +1592,25 @@ int CDECL MSVCRT__towupper_l(MSVCRT_wint_t c, MSVCRT__locale_t locale)
}
/*********************************************************************
* towupper (MSVCRT.@)
*/
int CDECL MSVCRT_towupper(MSVCRT_wint_t c)
{
return MSVCRT__towupper_l(c, NULL);
}
/*********************************************************************
* _towlower_l (MSVCRT.@)
*/
int CDECL MSVCRT__towlower_l(MSVCRT_wint_t c, MSVCRT__locale_t locale)
{
return tolowerW(c);
}
/*********************************************************************
* towlower (MSVCRT.@)
*/
int CDECL MSVCRT_towlower(MSVCRT_wint_t c)
{
return MSVCRT__towlower_l(c, NULL);
}
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