Skip to content
Snippets Groups Projects
Commit ccaf87b2 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard
Browse files

msvcrt: Add _iswpunct_l implementation.

parent ef69ad9f
No related branches found
No related tags found
No related merge requests found
......@@ -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.@)
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment