[Previous] [Contents] [Index] [Next]

va_end()

Finish getting items from a variable argument list

Synopsis:

#include <stdarg.h>

void va_end( va_list param );

Library:

libc

Description:

The va_end() macro is used to complete the acquisition of arguments from a list of variable arguments. It must be used with the associated macros va_start() and va_arg(). See the description for va_arg() for complete documentation on these macros.

Classification:

ANSI

Safety:
Cancellation point No
Interrupt handler Yes
Signal handler Yes
Thread Yes

Caveats:

va_end() is a macro.

See also:

va_arg(), va_start(), vfprintf(), vprintf(), vsprintf()


[Previous] [Contents] [Index] [Next]