|
|
#include <varargs.h>function (va_alist) va_dcl va_list pvar;
va_start (pvar); f = va_arg (pvar, type); va_end (pvar);
#include <stdarg.h>function (parmN, ...) va_list pvar;
va_start (pvar, parmN); f = va_arg (pvar, type); va_end (pvar);
This man page describes two header files that allow the manipulation of variable argument lists. varargs.h is provided for backward compatibility while stdarg.h is provided for greater portability.
va_alist is used in a function header to denote a variable argument list.
va_dcl is a declaration for va_alist. Note that there is no semicolon after va_dcl.
va_list is a type which can be used for the variable pvar, which is used to traverse the list. One such variable must always be declared.
va_start (pvar) is called to initialize pvar to the beginning of the list.
va_arg (pvar, type) returns the next argument in the list pointed to by pvar. type is the type the argument is expected to be. Different types can be mixed but it is up to the routine to know what type of argument is expected since it cannot be determined at runtime.
va_end (pvar) is used to finish up.
Multiple traversals, each bracketed by va_start ... va_end, are possible.
va_list is a type which can be used for the variable pvar, which is used to traverse the list. One such variable must always be declared.
va_start (pvar, parmN) is called to initialize pvar to the beginning of the list. parmN is the identifier of the rightmost parameter in the variable parameter list in the function definition.
va_arg (pvar, type) returns the next argument in the list pointed to by pvar. type is the type the argument is expected to be. Different types can be mixed but it is up to the routine to know what type of argument is expected since it cannot be determined at runtime.
va_end (pvar) is used to finish up.
Multiple traversals, each bracketed by va_start ... va_end,
are possible.
#include <stdio.h> #include <varargs.h>/* * the first argument is an int which tells how many pairs follow. * the pairs are doubles and character pointers * * remember that when variables are passed to functions * floats are promoted to doubles and chars to ints. */
void show(n, va_alist) int n; va_dcl { va_list ap; int i; double f; char *p;
va_start(ap); for (i = 0; i < n; ++i) { f = va_arg(ap, double); p = va_arg(ap, char *); printf("%4.1f %s\n", f, p); } va_end(ap); }
main() { show(2, 3.1, "but", 4.1, "end"); show(1, 5.9, "hello"); show(4, 6.2, "oops", 5.3, "blah", 5.1, "lovely", 2.3, "madrigal"); }
#include <stdio.h> #include <stdarg.h>/* * the first argument is an int which tells how many pairs follow. * the pairs are doubles and character pointers * * remember that when variables are passed to functions * floats are promoted to doubles and chars to ints. */
void show(int n, ...) { va_list ap; int i; double f; char *p;
va_start(ap, n); for (i = 0; i < n; ++i) { f = va_arg(ap, double); p = va_arg(ap, char *); printf("%4.1f %s\n", f, p); } va_end(ap); }
main() { show(2, 3.1, "but", 4.1, "end"); show(1, 5.9, "hello"); show(4, 6.2, "oops", 5.3, "blah", 5.1, "lovely", 2.3, "madrigal"); }
ANSI X3.159-1989 Programming Language -- C
;
X/Open Portability Guide, Issue 3, 1989
;
IEEE POSIX Std 1003.1-1990 System Application Program Interface (API) [C Language] (ISO/IEC 9945-1)
.
varargs is not part of any currently supported standard; it was developed by UNIX System Laboratories, Inc. and is maintained by The SCO Group.