Commit 45b4b420 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Added _iswdigit_l implementation.

parent c867f332
...@@ -824,7 +824,7 @@ ...@@ -824,7 +824,7 @@
@ stub _iswcsym_l @ stub _iswcsym_l
@ stub _iswcsymf_l @ stub _iswcsymf_l
@ stub _iswctype_l @ stub _iswctype_l
@ stub _iswdigit_l @ cdecl _iswdigit_l(long ptr) msvcrt._iswdigit_l
@ stub _iswgraph_l @ stub _iswgraph_l
@ stub _iswlower_l @ stub _iswlower_l
@ stub _iswprint_l @ stub _iswprint_l
...@@ -1267,7 +1267,7 @@ ...@@ -1267,7 +1267,7 @@
@ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c @ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c
@ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l @ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l
@ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l @ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l
@ cdecl _vswprintf_p(ptr long wstr ptr) msvcrt._vswprintf @ cdecl _vswprintf_p(ptr long wstr ptr) msvcr90._vswprintf_p
@ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l @ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l
@ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l @ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l
@ stub _vwprintf_l @ stub _vwprintf_l
......
...@@ -670,7 +670,7 @@ ...@@ -670,7 +670,7 @@
@ stub _iswcsym_l @ stub _iswcsym_l
@ stub _iswcsymf_l @ stub _iswcsymf_l
@ stub _iswctype_l @ stub _iswctype_l
@ stub _iswdigit_l @ cdecl _iswdigit_l(long ptr) msvcrt._iswdigit_l
@ stub _iswgraph_l @ stub _iswgraph_l
@ stub _iswlower_l @ stub _iswlower_l
@ stub _iswprint_l @ stub _iswprint_l
...@@ -1120,7 +1120,7 @@ ...@@ -1120,7 +1120,7 @@
@ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c @ cdecl _vswprintf_c(ptr long wstr ptr) msvcrt._vswprintf_c
@ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l @ cdecl _vswprintf_c_l(ptr long wstr ptr ptr) msvcrt._vswprintf_c_l
@ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l @ cdecl _vswprintf_l(ptr wstr ptr ptr) msvcrt._vswprintf_l
@ cdecl _vswprintf_p(ptr long wstr ptr) msvcrt._vswprintf @ cdecl _vswprintf_p(ptr long wstr ptr) msvcr90._vswprintf_p
@ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l @ cdecl _vswprintf_p_l(ptr long wstr ptr ptr) msvcrt._vswprintf_p_l
@ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l @ cdecl _vswprintf_s_l(ptr long wstr ptr ptr) msvcrt._vswprintf_s_l
@ stub _vwprintf_l @ stub _vwprintf_l
......
...@@ -658,7 +658,7 @@ ...@@ -658,7 +658,7 @@
@ stub _iswcsym_l @ stub _iswcsym_l
@ stub _iswcsymf_l @ stub _iswcsymf_l
@ stub _iswctype_l @ stub _iswctype_l
@ stub _iswdigit_l @ cdecl _iswdigit_l(long ptr) msvcrt._iswdigit_l
@ stub _iswgraph_l @ stub _iswgraph_l
@ stub _iswlower_l @ stub _iswlower_l
@ stub _iswprint_l @ stub _iswprint_l
......
...@@ -607,7 +607,7 @@ ...@@ -607,7 +607,7 @@
@ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l @ cdecl _iswalpha_l(long ptr) MSVCRT__iswalpha_l
# stub _iswcntrl_l(long ptr) # stub _iswcntrl_l(long ptr)
# stub _iswctype_l(long long ptr) # stub _iswctype_l(long long ptr)
# stub _iswdigit_l(long ptr) @ cdecl _iswdigit_l(long ptr) MSVCRT__iswdigit_l
# stub _iswgraph_l(long ptr) # stub _iswgraph_l(long ptr)
# stub _iswlower_l(long ptr) # stub _iswlower_l(long ptr)
# stub _iswprint_l(long ptr) # stub _iswprint_l(long ptr)
......
...@@ -1111,6 +1111,14 @@ INT CDECL MSVCRT_iswdigit( MSVCRT_wchar_t wc ) ...@@ -1111,6 +1111,14 @@ INT CDECL MSVCRT_iswdigit( MSVCRT_wchar_t wc )
} }
/********************************************************************* /*********************************************************************
* _iswdigit_l (MSVCRT.@)
*/
INT CDECL MSVCRT__iswdigit_l( MSVCRT_wchar_t wc, MSVCRT__locale_t locale )
{
return isdigitW( wc );
}
/*********************************************************************
* iswgraph (MSVCRT.@) * iswgraph (MSVCRT.@)
*/ */
INT CDECL MSVCRT_iswgraph( MSVCRT_wchar_t wc ) INT CDECL MSVCRT_iswgraph( 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