dtors.c

来自「c 语言编译器 源代码- c compiler」· C语言 代码 · 共 17 行

C
17
字号
/* @(#) dtors.c 1.1 1/27/86 17:47:57 *//*ident	"@(#)cfront:lib/static/dtors.c	1.1"*/typedef void (*PFV)();void dtors(){	extern PFV _dtors[];	static ddone;	if (ddone == 0) {	// once only		ddone = 1;		PFV* pf = _dtors;		while (*pf) pf++;		while (_dtors < pf) (**--pf)();	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?