![]() |
vfscanf | Function (Macro) |
stdio.h |
short vfscanf (FILE *file, const char *format, va_list arglist); |
File parsing function using argument list.
The vfscanf function is known as an alternate entry point for the fscanf function. It behaves exactly like fscanf, but it accepts a pointer to a list of arguments instead of an argument list (see stdarg.h header file for more info about argument lists). See sscanf for details on format specifiers.