Commit 9254edc3 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Don't use isgraphW.

parent b2e235a8
......@@ -1993,19 +1993,19 @@ INT CDECL MSVCRT_iswdigit( MSVCRT_wchar_t wc )
}
/*********************************************************************
* iswgraph (MSVCRT.@)
* _iswgraph_l (MSVCRT.@)
*/
INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc )
int CDECL MSVCRT__iswgraph_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isgraphW( wc );
return MSVCRT__iswctype_l( wc, MSVCRT__ALPHA | MSVCRT__DIGIT | MSVCRT__PUNCT, locale );
}
/*********************************************************************
* _iswgraph_l (MSVCRT.@)
* iswgraph (MSVCRT.@)
*/
int CDECL MSVCRT__iswgraph_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc )
{
return isgraphW( wc );
return MSVCRT__iswgraph_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