.\" @(#)stdarg.3 6.1 (Berkeley) %G% .\" .TH VARARGS 3 "" .AT 3 .SH NAME varargs \- variable argument list .SH SYNOPSIS .B "#include " .PP .I function\c .RB ( va_alist ) .br .B va_dcl .br .B va_list .IR pvar ; .br .B va_start\c .RI ( pvar ); .br f = .B va_arg\c .RI ( pvar , .IR type ); .br .B va_end\c .RI ( pvar ); .SH DESCRIPTION This set of macros provides a means of writing portable procedures that accept variable argument lists. Routines having variable argument lists (such as .IR printf (3)) that do not use varargs are inherently nonportable, since different machines use different argument passing conventions. .PP .B va_alist is used in a function header to declare a variable argument list. .PP .B va_dcl is a declaration for .BR va_alist . Note that there is no semicolon after .B va_dcl. .PP .B va_list is a type which can be used for the variable .IR pvar , which is used to traverse the list. One such variable must always be declared. .PP .B va_start\c .RI (pvar) is called to initialize .I pvar to the beginning of the list. .PP .B va_arg\c .RI ( pvar , .IR type ) will return the next argument in the list pointed to by .IR pvar . .I 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. .PP .B va_end\c .RI ( pvar ) is used to finish up. .PP Multiple traversals, each bracketed by .B va_start \&... .B va_end, are possible. .SH EXAMPLE .nf \fB#include\fP execl(\fBva_alist\fP) \fBva_dcl\fP { \fBva_list\fP ap; \fBchar\fP *file; \fBchar\fP *args[100]; \fBint\fP argno = 0; \fBva_start\fP(ap); file = \fBva_arg(ap, \fBchar\fP *); \fBwhile\fP (args[argno++] = \fBva_arg\fP(ap, \fBchar\fP *)) \fB;\fP \fBva_end\fP(ap); \fBreturn\fP execv(file, args); } .fi .SH BUGS It is up to the calling routine to determine how many arguments there are, since it is not possible to determine this from the stack frame. For example, .I execl passes a 0 to signal the end of the list. .I Printf can tell how many arguments are supposed to be there by the format.