mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 05:30:30 +00:00
msvcrt: Added _iswalpha_l implementation.
This commit is contained in:
parent
7a1ff50ddc
commit
903c524d43
@ -554,7 +554,7 @@
|
||||
# stub _isspace_l
|
||||
# stub _isupper_l
|
||||
# stub _iswalnum_l
|
||||
# stub _iswalpha_l
|
||||
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
|
||||
# stub _iswcntrl_l
|
||||
# stub _iswctype_l
|
||||
# stub _iswdigit_l
|
||||
|
@ -1022,6 +1022,14 @@ INT CDECL MSVCRT_iswalpha( MSVCRT_wchar_t wc )
|
||||
return isalphaW( wc );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* iswalpha_l (MSVCRT.@)
|
||||
*/
|
||||
INT CDECL MSVCRT__iswalpha_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
|
||||
{
|
||||
return isalphaW( wc );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* iswcntrl (MSVCRT.@)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user