[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
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.


See Also: scanf() va_arg()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson