Skip to content

va_list

IsaacShelton edited this page Mar 21, 2022 · 1 revision

va_list

va_list is an intrinsic type defined by the compiler, that's used for C style variadic arguments.

Opaqueness

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

Clone this wiki locally