?? atexit.h
字號:
/* * %G% (UofMD) %D% */#define ATEXIT_SIZE 32 /* must be at least 32 to guarantee ANSI conformance */struct atexit { struct atexit *next; /* next in list */ int ind; /* next index in this table */ void (*fns[ATEXIT_SIZE])(); /* the table itself */};struct atexit *__atexit; /* points to head of LIFO stack */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -