7.24.2.8 The vswscanf function

Synopsis

1

#include <stdarg.h>
#include <wchar.h>
int vswscanf(const wchar_t * restrict s,
     const wchar_t * restrict format,
     va_list arg);

Description

2

The vswscanf function is equivalent to swscanf, with the variable argument list replaced by arg, which shall have been initialized by the va_start macro (and possibly subsequent va_arg calls). The vswscanf function does not invoke the va_end macro.[1]

Returns

3

The vswscanf function returns the value of the macro EOF if an input failure occurs before any conversion. Otherwise, the vswscanf function returns the number of input items assigned, which can be fewer than provided for, or even zero, in the event of an early matching failure.

Footnotes