msvcrt: Don't use isupperW.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2020-07-15 14:06:29 +02:00 committed by Alexandre Julliard
parent ab678ee097
commit da164d19e8
1 changed files with 9 additions and 9 deletions

View File

@ -2073,20 +2073,20 @@ INT CDECL MSVCRT_iswspace( MSVCRT_wchar_t wc )
return MSVCRT__iswspace_l( wc, NULL );
}
/*********************************************************************
* iswupper (MSVCRT.@)
*/
INT CDECL MSVCRT_iswupper( MSVCRT_wchar_t wc )
{
return isupperW( wc );
}
/*********************************************************************
* _iswupper_l (MSVCRT.@)
*/
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 (MSVCRT.@)
*/
INT CDECL MSVCRT_iswupper( MSVCRT_wchar_t wc )
{
return MSVCRT__iswupper_l( wc, NULL );
}
/*********************************************************************