va_end

Is a macro that completes the acquisition of arguments from a list of variable arguments.

Library:LibC
Classification:ANSI
Service:General C Services

Syntax

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

Parameters

param

(IN) Specifies a variable argument list.

Remarks

The macro va_end is used to finish 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