?? stdio.h
字號:
/* ... support */
typedef unsigned char *va_list;
#define va_start(parm) (((unsigned char *)&parm))
#define va_arg(ap, type) (*(type *)(ap-=sizeof(type)))
/* standard output routine definition */
#define stdio_putchar sci_putchar
extern void stdio_putchar(char character);
/* exported functions */
void printf(char *format, ...);
void sprintf(char *dest, char *format, ...);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -