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

msvcrt: Don't use islowerW.

parent 9254edc3
...@@ -2009,19 +2009,19 @@ INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc ) ...@@ -2009,19 +2009,19 @@ INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc )
} }
/********************************************************************* /*********************************************************************
* iswlower (MSVCRT.@) * _iswlower_l (MSVCRT.@)
*/ */
INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc ) 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_l (MSVCRT.@) * iswlower (MSVCRT.@)
*/ */
int CDECL MSVCRT__iswlower_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale ) INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc )
{ {
return islowerW( wc ); return MSVCRT__iswlower_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