Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
stdarg.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define va_start(v, l)   __builtin_va_start(v, l)
 
#define va_end(v)   __builtin_va_end(v)
 
#define va_arg(v, l)   __builtin_va_arg(v, l)
 
#define va_copy(d, s)   __builtin_va_copy(d, s)
 

Typedefs

typedef __builtin_va_list va_list
 
typedef __builtin_va_list __isoc_va_list
 

Macro Definition Documentation

◆ va_arg

#define va_arg (   v,
 
)    __builtin_va_arg(v, l)

Definition at line 10 of file stdarg.h.

◆ va_copy

#define va_copy (   d,
 
)    __builtin_va_copy(d, s)

Definition at line 11 of file stdarg.h.

◆ va_end

#define va_end (   v)    __builtin_va_end(v)

Definition at line 9 of file stdarg.h.

◆ va_start

#define va_start (   v,
 
)    __builtin_va_start(v, l)

Definition at line 8 of file stdarg.h.

Typedef Documentation

◆ __isoc_va_list

typedef __builtin_va_list __isoc_va_list

Definition at line 14 of file stdarg.h.

◆ va_list

typedef __builtin_va_list va_list

Definition at line 13 of file stdarg.h.