atexit.h
来自「cygwin, 著名的在win32下模拟unix操作系统的东东」· C头文件 代码 · 共 14 行
H
14 行
/* * %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 + =
减小字号Ctrl + -
显示快捷键?