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

msvcrt: Add _iswpunct_l implementation.

parent ef69ad9f
......@@ -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)
......
......@@ -1588,6 +1588,14 @@ INT CDECL MSVCRT_iswprint( MSVCRT_wchar_t wc )
}
/*********************************************************************
* _iswpunct_l (MSVCRT.@)
*/
INT CDECL MSVCRT__iswpunct_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return ispunctW( wc );
}
/*********************************************************************
* iswpunct (MSVCRT.@)
*/
INT CDECL MSVCRT_iswpunct( 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