.\" @(#)stdarg.3 6.3 (Berkeley) 05/15/86 .\" .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 to which the expected argument will be converted when passed as an argument. In standard C, arguments that are .B char or .B short should be accessed as .BR int , .B "unsigned char or .B "unsigned short are converted to .BR "unsigned int" , and .B float arguments are converted to .BR double . 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. .PP The macros .I va_start and .I va_end may be arbitrarily complex; for example, .I va_start might contain an opening brace, which is closed by a matching brace in .IR va_end . Thus, they should only be used where they could be placed within a single complex statement.