|
||
void va_end( va_list args )
va_list args; /* variable argument list */
|
|
|
Synopsis |
#include "stdarg.h"
The va_end macro is used to do any cleanup required for variable argument list processing.
|
|
Parameters |
args is the address of a va_list , used to hold the current location in a list of unnamed parameters.
|
|
Return Value |
none.
|
|
Comments |
va_end should be called after all arguments have been read by va_arg. See the entry for va_arg for more information on the stdarg facility.
|
|
See Also |
|
|
|
|