std::va_list

Header: <cstdarg>

va_list is a complete object type (in practice, a unique built-in type or char*) suitable for holding the information needed by the macros va_start, va_copy, va_arg, and va_end.

# Declarations

typedef /* unspecified */ va_list;

# Example

This section is incompleteReason: no example

# See also