SilverScreen Solid Modeler

va_end

va_end

Previous topic Next topic  

va_end

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

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

va_arg, va_start