vsscanf()                Perform Formatted Input from String
 
 #include   <stdio.h>
 #include   <stdarg.h>
 
 int        vsscanf(s,format-string,param);
 char       *s;                          Buffer
 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 form the va_arg array
    va_list 'param'.  vsscanf() performs similarly to scanf(), except
    that it 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...() for a description of 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