VSCANF(3S)
NAME
vscanf, vfscanf, vsscanf − formatted input conversion to a varargs argument list, read from stream file
SYNOPSIS
#include <stdio.h>
#include <varargs.h>
int vscanf (format, ap)
const char ∗format;
va_list ap;
int vfscanf (stream, format, ap)
FILE ∗stream;
const char ∗format;
va_list ap;
int vsscanf (s, format, ap)
char ∗s;
const char ∗format;
va_list ap;
DESCRIPTION
Vscanf, vfscanf, and vsscanf are the same as scanf, fscanf, and sscanf respectively, except that instead of being called with a variable number of arguments, they are called with an argument list as defined by varargs(5).
SEE ALSO
scanf(3S), setlocale(3C), varargs(5).
Hewlett-Packard Company — HP-UX Release 7.0: Sept 1989