VA_END - end variable list.

(ANSI Standard)

Usage:

#include <stdarg.h>
va_end(varlist);

Where:

va_list varlist;
represents a set of arguments passed to the function that contains the call to "va_end". "varlist" must be set up with a call to "va_start" before calling "va_end".

Description:

"va_end" is a macro that indicates you have reached the end of a "variable" set of arguments. For more information, see "expl c include stdarg".

Copyright © 1996, Thinkage Ltd.