We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
va_list is an intrinsic type defined by the compiler, that's used for C style variadic arguments.
va_list
va_list is an opaque type, the programmer is not meant to directly interact with it.
Instead, the programmer should use va_start, va_end, va_arg, and va_copy
va_start
va_end
va_arg
va_copy
Table of Contents