HPlogo HP-UX Reference > V

vscanf(3S)

HP-UX 11i Version 2: December 2007 Update
» 

Technical documentation

 » Table of Contents

 » Index

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(const char *format, va_list ap); int vfscanf(FILE *stream, const char *format, va_list ap); int vsscanf(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).