Module: wine Branch: master Commit: 903c524d43893c004764cef4fa84f2072de22529 URL: http://source.winehq.org/git/wine.git/?a=commit;h=903c524d43893c004764cef4fa...
Author: Piotr Caban piotr@codeweavers.com Date: Thu Apr 8 10:24:44 2010 +0200
msvcrt: Added _iswalpha_l implementation.
---
dlls/msvcrt/msvcrt.spec | 2 +- dlls/msvcrt/wcs.c | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/dlls/msvcrt/msvcrt.spec b/dlls/msvcrt/msvcrt.spec index 8692e7d..95f610e 100644 --- a/dlls/msvcrt/msvcrt.spec +++ b/dlls/msvcrt/msvcrt.spec @@ -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 diff --git a/dlls/msvcrt/wcs.c b/dlls/msvcrt/wcs.c index d7b0058..e453e9c 100644 --- a/dlls/msvcrt/wcs.c +++ b/dlls/msvcrt/wcs.c @@ -1023,6 +1023,14 @@ INT CDECL MSVCRT_iswalpha( MSVCRT_wchar_t wc ) }
/********************************************************************* + * iswalpha_l (MSVCRT.@) + */ +INT CDECL MSVCRT__iswalpha_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale ) +{ + return isalphaW( wc ); +} + +/********************************************************************* * iswcntrl (MSVCRT.@) */ INT CDECL MSVCRT_iswcntrl( MSVCRT_wchar_t wc )