[PATCH] ucrtbase: Implement vsscanf

Martin Storsjö martin at martin.st
Wed Oct 28 16:59:10 CDT 2015


On Wed, 28 Oct 2015, Piotr Caban wrote:

> On 10/28/15 09:54, Martin Storsjo wrote:
>> +/*********************************************************************
>> + *		_snscanf_s_l (MSVCRT.@)
>> + */
>> +int CDECL MSVCRT__stdio_common_vsscanf(unsigned __int64 options, const 
>> char *input, MSVCRT_size_t length, const char *format, MSVCRT__locale_t 
>> locale, __ms_va_list valist)
>> +{
>> +    return MSVCRT_vsnscanf_l(input, length, format, locale, valist);
>> +}
> Shouldn't this function also print some message about ignored options 
> argument?

I guess so; currently it implements the legacy mode. I'll add a FIXME if 
used with any other options, and later look into completing support for 
the new, standards compliant mode.

// Martin



More information about the wine-devel mailing list