VLSI Solution Oy / MegaLib Documentation

stdarg.h

Go to the documentation of this file.
00001 #ifndef _STDARG_H_
00002 #define _STDARG_H_
00003 typedef char *va_list;
00004 
00005 #define va_start(ap, last) (ap = ((va_list)&(last)))
00006 #define va_arg(ap, type)   ((type *)(ap -= sizeof(type)))[0]
00007 #define va_end(ap)
00008 
00009 #endif /* _STDARG_H_ */

All software copyright 2005-2006 VLSI Solution OY. Redistribution of this software is strictly forbidden.