Finish getting items from a variable argument list
#include <stdarg.h> void va_end( va_list param );
libc
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.
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |
va_end() is a macro.
va_arg(), va_start(), vfprintf(), vprintf(), vsprintf()