Commit b71f1ea1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msvcrt: Add _iswgraph_l().

parent 2170cce2
......@@ -27,7 +27,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) ucrtbase._iswctype_l
@ cdecl _iswdigit_l(long ptr) ucrtbase._iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) ucrtbase._iswgraph_l
@ cdecl _iswlower_l(long ptr) ucrtbase._iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) ucrtbase._iswpunct_l
......
......@@ -1023,7 +1023,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
......@@ -1369,7 +1369,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
......@@ -1375,7 +1375,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
......@@ -1240,7 +1240,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) msvcr120._iswctype_l
@ cdecl _iswdigit_l(long ptr) msvcr120._iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) msvcr120._iswgraph_l
@ cdecl _iswlower_l(long ptr) msvcr120._iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) msvcr120._iswpunct_l
......
......@@ -695,7 +695,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
......@@ -673,7 +673,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
......@@ -638,7 +638,7 @@
# stub _iswcntrl_l(long ptr)
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
# stub _iswgraph_l(long ptr)
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
# stub _iswprint_l(long ptr)
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
......@@ -1855,6 +1855,14 @@ INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc )
}
/*********************************************************************
* _iswgraph_l (MSVCRT.@)
*/
int CDECL MSVCRT__iswgraph_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isgraphW( wc );
}
/*********************************************************************
* iswlower (MSVCRT.@)
*/
INT CDECL MSVCRT_iswlower( MSVCRT_wchar_t wc )
......
......@@ -514,7 +514,7 @@
@ stub _iswcsymf_l
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l
@ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
@ stub _iswgraph_l
@ cdecl _iswgraph_l(long ptr) MSVCRT__iswgraph_l
@ cdecl _iswlower_l(long ptr) MSVCRT__iswlower_l
@ stub _iswprint_l
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
......
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