Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>vsscanf() read formatted input from string</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 vsscanf()               Read Formatted Input from String

 #include   <stdio.h>
 #include   <stdarg.h>

 int        vsscanf(s,format-string,param);
 const char *s;                          Buffer
 const char *format-string;              Format string
 va_list    param;                       Variable argument list

    vsscanf() reads data stored in the character string 's' into
    locations given by the address arguments from the va_arg array
    va_list 'param'.  vsscanf() performs like scanf(), but reads its data
    from a string instead of stdin and stores the data into locations
    given by the arguments in 'param'.

    See scanf() for a complete description of the format-string.

    See va_arg() for a description of variable argument lists.


See Also: scanf() va_arg()

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