va_end

Completes the acquisition of arguments from a list of variable arguments (macro)

Local Servers:nonblocking
Remote Servers:N/A
Classification:ANSI
Service:Variable Length Argument List

Syntax

  #include <stdarg.h>  
   
  void va_end  (  
     va_list   param);
  

Parameters

param
(IN) Specifies a variable argument.

Return Values

None

Remarks

The macro va_end 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.

See Also

va_arg, va_start, vfprintf, vprintf (Single and Intra-File Management), vsprintf