![]() |
![]() |
![]() |
![]() |
Scan input from a file
#include <wchar.h> #include <stdarg.h> int vfwscanf( FILE * fp, const wchar_t *format, va_list arg );
libc
The vfwscanf() function scans input from the file designated by fp, under control of the argument format.
The vfwscanf() function is equivalent to fwscanf(), with a variable argument list replaced with arg, which has been initialized using the va_start() macro.
For details about the format string, see scanf(). The vfwscanf() function is the wide-character version of vfscanf().
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |
errno, fwscanf(), scanf(), swscanf(), va_arg(), va_end(), va_start(), vswscanf(), wscanf()
![]() |
![]() |
![]() |
![]() |