atexit.h
来自「基于4个mips核的noc设计」· C头文件 代码 · 共 14 行
H
14 行
/* * lib-src/ansi/stdlib/atexit.h * Local header for atexit()-registered functions. */#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 */};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?