7.19.6.14 The vsscanf function

Synopsis

1

#include <stdarg.h>
#include <stdio.h>
int vsscanf(const char * restrict s,
     const char * restrict format,
     va_list arg);

Description

2

The vsscanf function is equivalent to sscanf, 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 vsscanf function does not invoke the va_end macro.[1]

Returns

3

The vsscanf function returns the value of the macro EOF if an input failure occurs before any conversion. Otherwise, the vsscanf 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