vfscanf() Perform Formatted Input from a Stream
#include <stdio.h>
#include <stdarg.h>
int vfscanf(stream,format-string,param);
FILE *stream; Input stream
char *format-string; Format string
va_list param; Variable argument list
vfscanf() reads data from the named input stream 'stream' and stores
them in locations given by address arguments from the va_arg array
va_list 'param'. vfscanf() performs similarly to scanf, except that
it accepts address arguments from the 'param' argument, and accepts
its input from a named stream, rather than stdin.
See scanf() for a complete description of the format-string and
return value.
See va_...() for more information about variable argument lists.
Seealso:
This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster