End of scanning argument list
[Classification]
Standard library
[Syntax]
#include <stdarg.h>
typedef char __near *va_list;
void va_end(va_list ap);
[Description]
This function indicates the end of scanning the argument list. By enclosing va_arg between va_start and va_end, scanning the list can be repeated.