msvcrt: Don't use islowerW.

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:06 +02:00 committed by Alexandre Julliard
parent 9254edc30d
commit badc282cf7
1 changed files with 9 additions and 9 deletions

View File

@ -2008,20 +2008,20 @@ INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc )
return MSVCRT__iswgraph_l( wc, NULL );
}
/*********************************************************************
* iswlower (MSVCRT.@)
*/
INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc )
{
return islowerW( wc );
}
/*********************************************************************
* _iswlower_l (MSVCRT.@)
*/
int CDECL MSVCRT__iswlower_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return islowerW( wc );
return MSVCRT__iswctype_l( wc, MSVCRT__LOWER, locale );
}
/*********************************************************************
* iswlower (MSVCRT.@)
*/
INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc )
{
return MSVCRT__iswlower_l( wc, NULL );
}
/*********************************************************************