80b va_end[abandon a variable argument list]

Contents|Index|Previous

va_end
[abandon a variable argument list]

SYNOPSIS 
#include <varargs.h> 
va_end(va_list ap); 

DESCRIPTION
Use
va_end to declare that your program will not use the variable argument list, ap, any further.

RETURNS
va_end does not return a result.

COMPLIANCE
The
va_end defined in varargs.h has the same syntax and usage as the ANSI C version from stdarg.h.

0