665 va_end[abandon variable argument list] Contents|Index|Previous|Next

va_end
[abandon variable argument list]

SYNOPSIS
#include <stdarg.h>
void 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
ANSI C requires
va_end.

0