⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdarg.h

📁 Welcome to UnderC version 1.2.9w This package consists of the executable (UCW), a default script
💻 H
字号:
//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -