msvcrt: Add _iswspace_l implementation.

oldstable
Piotr Caban 2015-01-23 17:50:55 +01:00 committed by Alexandre Julliard
parent 90b68f9964
commit ef69ad9f97
8 changed files with 15 additions and 7 deletions

View File

@ -1026,7 +1026,7 @@
@ stub _iswlower_l
@ stub _iswprint_l
@ stub _iswpunct_l
@ stub _iswspace_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l

View File

@ -1373,7 +1373,7 @@
@ stub _iswlower_l
@ stub _iswprint_l
@ stub _iswpunct_l
@ stub _iswspace_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l

View File

@ -1377,7 +1377,7 @@
@ stub _iswlower_l
@ stub _iswprint_l
@ stub _iswpunct_l
@ stub _iswspace_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l

View File

@ -1244,7 +1244,7 @@
@ stub _iswlower_l
@ stub _iswprint_l
@ stub _iswpunct_l
@ stub _iswspace_l
@ cdecl _iswspace_l(long ptr) msvcr120._iswspace_l
@ stub _iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) msvcr120._isxdigit_l

View File

@ -699,7 +699,7 @@
@ stub _iswlower_l
@ stub _iswprint_l
@ stub _iswpunct_l
@ stub _iswspace_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l

View File

@ -676,7 +676,7 @@
@ stub _iswlower_l
@ stub _iswprint_l
@ stub _iswpunct_l
@ stub _iswspace_l
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
@ stub _iswupper_l
@ stub _iswxdigit_l
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l

View File

@ -642,7 +642,7 @@
# stub _iswlower_l(long ptr)
# stub _iswprint_l(long ptr)
# stub _iswpunct_l(long ptr)
# stub _iswspace_l(long ptr)
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
# stub _iswupper_l(long ptr)
# stub _iswxdigit_l(long ptr)
@ cdecl _isxdigit_l(long ptr) MSVCRT__isxdigit_l

View File

@ -1595,6 +1595,14 @@ INT CDECL MSVCRT_iswpunct( MSVCRT_wchar_t wc )
return ispunctW( wc );
}
/*********************************************************************
* _iswspace_l (MSVCRT.@)
*/
INT CDECL MSVCRT__iswspace_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isspaceW( wc );
}
/*********************************************************************
* iswspace (MSVCRT.@)
*/