vscanf(3S) DG/UX 5.4.2 vscanf(3S)
NAME
vscanf, vfscanf, vsscanf - convert formatted input using varargs
argument list
SYNOPSIS
#include <stdio.h>
#include <varargs.h>
int vscanf (format, ap)
char *format;
valist ap;
int vfscanf (stream, format, ap)
FILE *stream;
char *format;
va_list ap;
int vsscanf (s, format, ap)
char *s, *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), varargs(5).
Licensed material--property of copyright holder(s) 1