7.19.6.9 The vfscanf function

Synopsis

1

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

Description

2

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

Returns

3

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