msvcrt: Add _iswalnum_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:54 +03:00 committed by Alexandre Julliard
parent b71f1ea1c9
commit 3c5862102f
10 changed files with 17 additions and 9 deletions

View File

@ -19,7 +19,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) ucrtbase._isspace_l
@ cdecl _isupper_l(long ptr) ucrtbase._isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) ucrtbase._iswalnum_l
@ cdecl _iswalpha_l(long ptr) ucrtbase._iswalpha_l
@ cdecl _iswblank_l(long ptr) ucrtbase._iswblank_l
@ stub _iswcntrl_l

View File

@ -1016,7 +1016,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
@ stub _iswcntrl_l
@ stub _iswcsym_l

View File

@ -1362,7 +1362,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
@ stub _iswcntrl_l
@ stub _iswcsym_l

View File

@ -1367,7 +1367,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
@ cdecl _iswblank_l(long ptr) MSVCRT__iswblank_l
@ stub _iswcntrl_l

View File

@ -1232,7 +1232,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) msvcr120._isspace_l
@ cdecl _isupper_l(long ptr) msvcr120._isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) msvcr120._iswalnum_l
@ cdecl _iswalpha_l(long ptr) msvcr120._iswalpha_l
@ cdecl _iswblank_l(long ptr) msvcr120._iswblank_l
@ stub _iswcntrl_l

View File

@ -688,7 +688,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
@ stub _iswcntrl_l
@ stub _iswcsym_l

View File

@ -666,7 +666,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
@ stub _iswcntrl_l
@ stub _iswcsym_l

View File

@ -633,7 +633,7 @@
@ cdecl _isprint_l(long ptr) MSVCRT__isprint_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
# stub _iswalnum_l(long ptr)
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
# stub _iswcntrl_l(long ptr)
@ cdecl _iswctype_l(long long ptr) MSVCRT__iswctype_l

View File

@ -1806,6 +1806,14 @@ INT CDECL MSVCRT_iswalnum( MSVCRT_wchar_t wc )
return isalnumW( wc );
}
/*********************************************************************
* _iswalnum_l (MSVCRT.@)
*/
int CDECL MSVCRT__iswalnum_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isalnumW( wc );
}
/*********************************************************************
* iswalpha (MSVCRT.@)
*/

View File

@ -506,7 +506,7 @@
@ stub _ispunct_l
@ cdecl _isspace_l(long ptr) MSVCRT__isspace_l
@ cdecl _isupper_l(long ptr) MSVCRT__isupper_l
@ stub _iswalnum_l
@ cdecl _iswalnum_l(long ptr) MSVCRT__iswalnum_l
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
@ cdecl _iswblank_l(long ptr) MSVCRT__iswblank_l
@ stub _iswcntrl_l