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>
This commit is contained in:
parent
b71f1ea1c9
commit
3c5862102f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue