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 the va_list of the specified type T.
va_copy(va_list dest, va_list src) → void

Available on Stdc, provided by the StdcStdarg extension

Copies the state of the src va_list to the dest va_list.
va_end(va_list ap) → void

Available on Stdc, provided by the StdcStdarg extension

Cleans up the va_list.
va_start(List args) va_list

Available on Stdc, provided by the StdcStdarg extension

Initializes a va_list to be used with va_arg and va_end.