<stdarg.h>


#define va_arg(va_list ap, T) <rvalue of type T>
#define va_end(va_list ap) <void expression><\I>
typedef do-type va_list;
#define va_start(va_list ap, last-par) <void expression>

Include the standard header <stdarg.h> to access the unnamed additional arguments (arguments with no corresponding parameter declarations) in a function that accepts a varying number of arguments. To access the additional arguments:

You can repeat this sequence (as needed) to access the arguments as often as you want.

You declare an object of type va_list to store context information. va_list can be an array type, which affects how the program shares context information with functions that it calls. (The address of the first element of an array is passed, rather than the object itself.)

For example, here is a function that concatenates an arbitrary number of strings onto the end of an existing string (assuming that the existing string is stored in an object large enough to hold the resulting string):

#include <stdarg.h>
void va_cat(char *s, ...)
    {
    char *t;
    va_list ap;

    va_start(ap, s);
    while (t = va_arg(ap, char *)) null pointer ends list
        {
        s += strlen(s);            skip to end
        strcpy(s, t);              and copy a string
        }
    va_end(ap);
    }

va_arg

#define va_arg(va_list ap, T) <rvalue of type T>

The macro yields the value of the next argument in order, specified by the context information designated by ap. The additional argument must be of object type T after applying the rules for promoting arguments in the absence of a function prototype.

va_end

#define va_end(va_list ap) <void expression><\I>

The macro performs any cleanup necessary, after processing the context information designated by ap, so that the function can return.

va_list

typedef do-type va_list;

The type is the object type do-type that you declare to hold the context information initialized by va_start and used by va_arg to access additional unnamed arguments.

va_start

#define va_start(va_list ap, last-par) <void expression>

The macro stores initial context information in the object designated by ap. last-par is the name of the last parameter you declare. For example, last-par is b for the function declared as int f(int a, int b, ...). The last parameter must not have register storage class, and it must have a type that is not changed by the translator. It cannot have:


See also the Table of Contents and the Index.

Copyright © 1989-1996 by P.J. Plauger and Jim Brodie. All rights reserved.