Commit ef69ad9f authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Add _iswspace_l implementation.

parent 90b68f99
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
......@@ -1596,6 +1596,14 @@ INT CDECL MSVCRT_iswpunct( MSVCRT_wchar_t wc )
}
/*********************************************************************
* _iswspace_l (MSVCRT.@)
*/
INT CDECL MSVCRT__iswspace_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isspaceW( wc );
}
/*********************************************************************
* iswspace (MSVCRT.@)
*/
INT CDECL MSVCRT_iswspace( MSVCRT_wchar_t wc )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment