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:
parent
9254edc30d
commit
badc282cf7
|
@ -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 );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
|
Loading…
Reference in New Issue