msvcrt: Add _iswgraph_l().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Nikolay Sivov 2018-11-16 09:31:53 +03:00 committed by Alexandre Julliard
parent 2170cce2af
commit b71f1ea1c9
10 changed files with 17 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1854,6 +1854,14 @@ INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc )
return isgraphW( wc );
}
/*********************************************************************
* _iswgraph_l (MSVCRT.@)
*/
int CDECL MSVCRT__iswgraph_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isgraphW( wc );
}
/*********************************************************************
* iswlower (MSVCRT.@)
*/

View File

@ -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