?? stdarg.h
字號:
/* *----------------------------------------------------------------------------- * Copyright (c) KEIL ELEKTRONIK GmbH and Franklin Software, Inc., 1987-1992 *----------------------------------------------------------------------------- *//* STDARG.H: prototypes for variable argument lists V3.00 */#ifndef NULL #define NULL ((void *) 0)#endiftypedef char *va_list;#define va_start(ap,v) ap = (va_list)&v + sizeof(v)#define va_arg(ap,t) (((t *)ap)++[0])#define va_end(ap) (ap)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -