Everything

vfwscanf


Inputs data from a stream input/output file and converts it according to a format.

[Format]

#include <stdarg.h>

#include <stdio.h>

#include <wchar.h>

long vfwscanf(FILE *restrict fp, const wchar_t *restrict control, va_list arg);

[Parameters]

fp File pointer

control Pointer to wide string indicating format

arg Parameter list

[Return values]

Normal: Number of data items successfully input and converted

Abnormal: Input data ends before input data conversion is performed: EOF

[Remarks]

The vfwscanf is the wide-character version of the vfscanf function.