StdcStdarg extension
<stdarg.h> standard variadic argument extensions for stdc.
- on
Methods
-
va_arg<
T> (va_list ap) → T -
Available on Stdc, provided by the StdcStdarg extension
Retrieves the next argument in theva_listof the specified typeT. -
va_copy(
va_list dest, va_list src) → void -
Available on Stdc, provided by the StdcStdarg extension
Copies the state of thesrcva_listto thedestva_list. -
va_end(
va_list ap) → void -
Available on Stdc, provided by the StdcStdarg extension
Cleans up theva_list. -
va_start(
List args) → va_list -
Available on Stdc, provided by the StdcStdarg extension
Initializes ava_listto be used withva_argandva_end.