1VA_ARG(P) POSIX Programmer's Manual VA_ARG(P)
2
3
4
6 va_arg, va_copy, va_end, va_start - handle variable argument list
7
9 #include <stdarg.h>
10
11 type va_arg(va_list ap, type);
12 void va_copy(va_list dest, va_list src);
13 void va_end(va_list ap);
14 void va_start(va_list ap, argN);
15
16
18 Refer to the Base Definitions volume of IEEE Std 1003.1-2001,
19 <stdarg.h>.
20
22 Portions of this text are reprinted and reproduced in electronic form
23 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
24 -- Portable Operating System Interface (POSIX), The Open Group Base
25 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
26 Electrical and Electronics Engineers, Inc and The Open Group. In the
27 event of any discrepancy between this version and the original IEEE and
28 The Open Group Standard, the original IEEE and The Open Group Standard
29 is the referee document. The original Standard can be obtained online
30 at http://www.opengroup.org/unix/online.html .
31
32
33
34IEEE/The Open Group 2003 VA_ARG(P)