Commit da164d19 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Don't use isupperW.

parent ab678ee0
...@@ -2074,19 +2074,19 @@ INT CDECL MSVCRT_iswspace( MSVCRT_wchar_t wc ) ...@@ -2074,19 +2074,19 @@ INT CDECL MSVCRT_iswspace( MSVCRT_wchar_t wc )
} }
/********************************************************************* /*********************************************************************
* iswupper (MSVCRT.@) * _iswupper_l (MSVCRT.@)
*/ */
INT CDECL MSVCRT_iswupper( MSVCRT_wchar_t wc ) int CDECL MSVCRT__iswupper_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{ {
return isupperW( wc ); return MSVCRT__iswctype_l( wc, MSVCRT__UPPER, locale );
} }
/********************************************************************* /*********************************************************************
* _iswupper_l (MSVCRT.@) * iswupper (MSVCRT.@)
*/ */
int CDECL MSVCRT__iswupper_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale ) INT CDECL MSVCRT_iswupper( MSVCRT_wchar_t wc )
{ {
return isupperW( wc ); return MSVCRT__iswupper_l( wc, 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