va_end

Header: <cstdarg>

The va_end macro performs cleanup for an ap object initialized by a call to va_start or va_copy. va_end may modify ap so that it is no longer usable.

# Declarations

void va_end( std::va_list ap );

# Parameters

# See also