module core.varargs

Code Map

module core.varargs;


//! Represents the list of arguments given to variadic functions.
alias va_list = void*;

//! Prepare a va_list for use.
fn va_start(vl: va_list);
//! Stop working with a va_list.
fn va_end(vl: va_list);
alias va_list

Represents the list of arguments given to variadic functions.

fn va_start(vl: va_list)

Prepare a va_list for use.

fn va_end(vl: va_list)

Stop working with a va_list.