msvcrt: Add _iswpunct_l implementation.

oldstable
Piotr Caban 2015-01-23 17:51:02 +01:00 committed by Alexandre Julliard
parent ef69ad9f97
commit ccaf87b2ea
8 changed files with 15 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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.@)
*/