Variable arguments
suggest changeIntroduction
Variable arguments are used by functions in the printf family (printf
, fprintf
, etc) and others to allow a function to be called with a different number of arguments each time, hence the name varargs.
To implement functions using the variable arguments feature, use #include <stdarg.h>
.
To call functions which take a variable number of arguments, ensure there is a full prototype with the trailing ellipsis in scope: void err_exit(const char *format, ...);
for example.
Syntax
- void va_start(va_list ap, last); /* Start variadic argument processing; last is the last function parameter before the ellipsis (“…”) */
- type va_arg(va_list ap, type); /* Get next variadic argument in list; be sure to pass the correct promoted type */
- void va_end(va_list ap); /* End argument processing */
- void va_copy(va_list dst, va_list src); /* C99 or later: copy argument list, i.e. current position in argument processing, into another list (e.g. to pass over arguments multiple times) */
Parameters
Parameter | Details |
——— | —–– |
va_list
ap | argument pointer, current position in the list of variadic arguments |
last | name of last non-variadic function argument, so the compiler finds the correct place to start processing variadic arguments; may not be declared as a register
variable, a function, or an array type |type | promoted type of the variadic argument to read (e.g. int
for a short int
argument) |va_list
src | current argument pointer to copy |va_list
dst | new argument list to be filled in |
Remarks
The va_start
, va_arg
, va_end
, and va_copy
functions are actually macros.
Be sure to always call va_start
first, and only once, and to call va_end
last, and only once, and on every exit point of the function. Not doing so may work on your system but surely is not portable and thus invites bugs.
Take care to declare your function correctly, i.e. with a prototype, and mind the restrictions on the last non-variadic argument (not register
, not a function or array type). It is not possible to declare a function that takes only variadic arguments, as at least one non-variadic argument is needed to be able to start argument processing.
When calling va_arg
, you must request the promoted argument type, that is:
short
is promoted toint
(andunsigned short
is also promoted toint
unlesssizeof(unsigned short) == sizeof(int)
, in which case it is promoted tounsigned int
).float
is promoted todouble
.signed char
is promoted toint
;unsigned char
is also promoted toint
unlesssizeof(unsigned char) == sizeof(int)
, which is seldom the case.char
is usually promoted toint
.- C99 types like
uint8_t
orint16_t
are similarly promoted.
Historic (i.e. K&R) variadic argument processing is declared in <varargs.h>
but should not be used as it’s obsolete. Standard variadic argument processing (the one described here and declared in <stdarg.h>
) was introduced in C89; the va_copy
macro was introduced in C99 but provided by many compilers prior to that.