msvcrt: Add _iswpunct_l implementation.
This commit is contained in:
parent
ef69ad9f97
commit
ccaf87b2ea
|
@ -1025,7 +1025,7 @@
|
|||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ stub _iswpunct_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
@ stub _iswupper_l
|
||||
@ stub _iswxdigit_l
|
||||
|
|
|
@ -1372,7 +1372,7 @@
|
|||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ stub _iswpunct_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
@ stub _iswupper_l
|
||||
@ stub _iswxdigit_l
|
||||
|
|
|
@ -1376,7 +1376,7 @@
|
|||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ stub _iswpunct_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
@ stub _iswupper_l
|
||||
@ stub _iswxdigit_l
|
||||
|
|
|
@ -1243,7 +1243,7 @@
|
|||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ stub _iswpunct_l
|
||||
@ cdecl _iswpunct_l(long ptr) msvcr120._iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) msvcr120._iswspace_l
|
||||
@ stub _iswupper_l
|
||||
@ stub _iswxdigit_l
|
||||
|
|
|
@ -698,7 +698,7 @@
|
|||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ stub _iswpunct_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
@ stub _iswupper_l
|
||||
@ stub _iswxdigit_l
|
||||
|
|
|
@ -675,7 +675,7 @@
|
|||
@ stub _iswgraph_l
|
||||
@ stub _iswlower_l
|
||||
@ stub _iswprint_l
|
||||
@ stub _iswpunct_l
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
@ stub _iswupper_l
|
||||
@ stub _iswxdigit_l
|
||||
|
|
|
@ -641,7 +641,7 @@
|
|||
# stub _iswgraph_l(long ptr)
|
||||
# stub _iswlower_l(long ptr)
|
||||
# stub _iswprint_l(long ptr)
|
||||
# stub _iswpunct_l(long ptr)
|
||||
@ cdecl _iswpunct_l(long ptr) MSVCRT__iswpunct_l
|
||||
@ cdecl _iswspace_l(long ptr) MSVCRT__iswspace_l
|
||||
# stub _iswupper_l(long ptr)
|
||||
# stub _iswxdigit_l(long ptr)
|
||||
|
|
|
@ -1587,6 +1587,14 @@ INT CDECL MSVCRT_iswprint( MSVCRT_wchar_t wc )
|
|||
return isprintW( wc );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _iswpunct_l (MSVCRT.@)
|
||||
*/
|
||||
INT CDECL MSVCRT__iswpunct_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
|
||||
{
|
||||
return ispunctW( wc );
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* iswpunct (MSVCRT.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue