stdarg.h
来自「This package consists of the executable 」· C头文件 代码 · 共 13 行
H
13 行
//stdarg.h
#ifndef __STDARG_H
#define __STDARG_H
// *fix 1.2.3b va_list is now char* for compatibility,
// and the args are at increasing addresses (was broken by stack direction change)
typedef char *va_list;
#define va_start(ap,p) ap = (char*)&p + 4
#define va_arg(ap,T) *((T*&)ap)++
#define va_end(ap)
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?