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

msvcrt: Don't use isprintW.

parent badc282c
......@@ -2025,19 +2025,20 @@ INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc )
}
/*********************************************************************
* iswprint (MSVCRT.@)
* _iswprint_l (MSVCRT.@)
*/
INT CDECL MSVCRT_iswprint( MSVCRT_wchar_t wc )
int CDECL MSVCRT__iswprint_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isprintW( wc );
return MSVCRT__iswctype_l( wc, MSVCRT__ALPHA | MSVCRT__BLANK |
MSVCRT__DIGIT | MSVCRT__PUNCT, locale );
}
/*********************************************************************
* _iswprint_l (MSVCRT.@)
* iswprint (MSVCRT.@)
*/
int CDECL MSVCRT__iswprint_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
INT CDECL MSVCRT_iswprint( MSVCRT_wchar_t wc )
{
return isprintW( wc );
return MSVCRT__iswprint_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