CS350 COS
COS
Loading...
Searching...
No Matches
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_LIST_DECLARED
 
#define va_start(ap, last)    __builtin_va_start((ap), (last))
 
#define va_arg(ap, type)    __builtin_va_arg((ap), type)
 
#define __va_copy(dest, src)    __builtin_va_copy((dest), (src))
 
#define va_copy(dest, src)    __va_copy(dest, src)
 
#define va_end(ap)    __builtin_va_end(ap)
 

Typedefs

typedef __builtin_va_list va_list
 

Macro Definition Documentation

◆ __va_copy

#define __va_copy (   dest,
  src 
)     __builtin_va_copy((dest), (src))

Definition at line 15 of file stdarg.h.

◆ _VA_LIST_DECLARED

#define _VA_LIST_DECLARED

Definition at line 5 of file stdarg.h.

◆ va_arg

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

Definition at line 12 of file stdarg.h.

◆ va_copy

#define va_copy (   dest,
  src 
)     __va_copy(dest, src)

Definition at line 18 of file stdarg.h.

◆ va_end

#define va_end (   ap)     __builtin_va_end(ap)

Definition at line 21 of file stdarg.h.

◆ va_start

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

Definition at line 9 of file stdarg.h.

Typedef Documentation

◆ va_list

typedef __builtin_va_list va_list

Definition at line 6 of file stdarg.h.