next up previous contents index
Next: 9.4.15 stddef.h: common definitions Up: 9.4 Header Files Previous: 9.4.13 signal.h: signal handling

9.4.14 stdarg.h: variable arguments

   

DESCRIPTION

This header provides definitions for accessing variable argument lists. It simply chains to x86-specific definitions.

va_list
Type used to declare local state variable used in traversing the variable argument list.
va_start
Initializes the va_list state variable. Must be called before va_arg or va_end.
va_arg
This macro returns the value of the next argument in the variable argument list, and advances the va_list state variable.
va_end
This macro is called after all the arguments have been read.



University of Utah Flux Research Group