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

msvcrt: Don't use iscntrlW.

parent 9dbf289c
......@@ -1961,19 +1961,19 @@ INT CDECL MSVCRT_iswalpha( MSVCRT_wchar_t wc )
}
/*********************************************************************
* iswcntrl (MSVCRT.@)
* _iswcntrl_l (MSVCRT.@)
*/
INT CDECL MSVCRT_iswcntrl( MSVCRT_wchar_t wc )
int CDECL MSVCRT__iswcntrl_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return iscntrlW( wc );
return MSVCRT__iswctype_l( wc, MSVCRT__CONTROL, locale );
}
/*********************************************************************
* _iswcntrl_l (MSVCRT.@)
* iswcntrl (MSVCRT.@)
*/
int CDECL MSVCRT__iswcntrl_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
INT CDECL MSVCRT_iswcntrl( MSVCRT_wchar_t wc )
{
return iscntrlW( wc );
return MSVCRT__iswcntrl_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