Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo C - <b>vfscanf() perform formatted input from a stream</b> http://www.X-Hacker.org [<<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()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson