msvcrt: Added _iswalpha_l implementation.

This commit is contained in:
Piotr Caban 2010-04-08 10:24:44 +02:00 committed by Alexandre Julliard
parent 7a1ff50ddc
commit 903c524d43
2 changed files with 9 additions and 1 deletions

View File

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

View File

@ -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.@)
*/