welibc
A clear, secure, and well documented standard C library
Macros | Typedefs
stdarg.h File Reference

Declares a type and macros for advancing through a list of arguments. More...

Go to the source code of this file.

Macros

#define va_arg(ap, type)   __builtin_va_arg((ap), type)
 
#define va_end(ap)   __builtin_va_end((ap))
 
#define va_start(ap, parmN)   __builtin_va_start((ap), (parmN))
 

Typedefs

typedef __builtin_va_list va_list
 

Detailed Description

Declares a type and macros for advancing through a list of arguments.

Definition in file stdarg.h.

Macro Definition Documentation

◆ va_arg

#define va_arg (   ap,
  type 
)    __builtin_va_arg((ap), type)

Definition at line 55 of file stdarg.h.

◆ va_end

#define va_end (   ap)    __builtin_va_end((ap))

Definition at line 62 of file stdarg.h.

◆ va_start

#define va_start (   ap,
  parmN 
)    __builtin_va_start((ap), (parmN))

Definition at line 49 of file stdarg.h.

Typedef Documentation

◆ va_list

typedef __builtin_va_list va_list

Definition at line 43 of file stdarg.h.