Jump to content United States-English
HP.com Home Products and Services Support and Drivers Solutions How to Buy
» Contact HP
More options
HP.com home
HP-UX Reference (Volume 7 of 9): Section 3: Library Functions (N-Z) > v

vscanf(3S)

» 

Technical documentation

Complete book in PDF
» Feedback
Content starts here

 » 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).

APPLICATION USAGE

vscanf(), vfscanf() and vsscanf() are thread-safe. These interfaces are not async-cancel-safe. A cancellation point may occur when a thread is executing vscanf() or vfscanf().

Printable version
Privacy statement Using this site means you accept its terms Feedback to webmaster
© 1983-2000 Hewlett-Packard Development Company, L.P.