msvcrt: Add _iswspace_l implementation.
This commit is contained in:
parent
90b68f9964
commit
ef69ad9f97
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue