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

msvcrt: Added _sscanf_l implementation.

parent ced42a0e
......@@ -921,7 +921,7 @@
@ stub _sprintf_p
@ stub _sprintf_p_l
@ stub _sprintf_s_l
@ stub _sscanf_l
@ varargs _sscanf_l(str str ptr) msvcrt._sscanf_l
@ stub _sscanf_s_l
@ stub _stat32
@ stub _stat32i64
......
......@@ -907,7 +907,7 @@
@ stub _sprintf_p
@ stub _sprintf_p_l
@ stub _sprintf_s_l
@ stub _sscanf_l
@ varargs _sscanf_l(str str ptr) msvcrt._sscanf_l
@ stub _sscanf_s_l
@ stub _stat32
@ stub _stat32i64
......
......@@ -856,7 +856,7 @@
# stub _sprintf_l
# stub _sprintf_p_l
# stub _sprintf_s_l
# stub _sscanf_l
@ varargs _sscanf_l(str str ptr) MSVCRT__sscanf_l
# stub _sscanf_s_l
@ cdecl _stat(str ptr) MSVCRT_stat
@ cdecl _stat64(str ptr) MSVCRT_stat64
......
......@@ -217,6 +217,20 @@ int CDECL MSVCRT_sscanf(const char *str, const char *format, ...)
return res;
}
/*********************************************************************
* _sscanf_l (MSVCRT.@)
*/
int CDECL MSVCRT__sscanf_l(const char *str, const char *format,
MSVCRT__locale_t locale, ...)
{
__ms_va_list valist;
int res;
__ms_va_start(valist, locale);
res = MSVCRT_vsscanf_l(str, format, locale, valist);
__ms_va_end(valist);
return res;
}
/*********************************************************************
* swscanf (MSVCRT.@)
......
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