out.h

来自「ELFkickers是一组elf工具」· C头文件 代码 · 共 28 行

H
28
字号
/* out.h: The top-level output functions. * * Copyright (C) 1999-2001 by Brian Raiter, under the GNU General * Public License. No warranty. See COPYING for details. */#ifndef	_out_h_#define	_out_h_#include	"pieces.h"/* Begins the output of the C code. Outputs the initial definitions * and the beginning of the initialization statement. */extern void beginoutpieces(void);/* Outputs the initialization code for a piece of the file, given the * actual contents of that piece. */extern void outpiece(pieceinfo const *piece, void const *contents);/* Concludes the output of the C code. Closes the initialization  * statement. */extern void endoutpieces(void);#endif

⌨️ 快捷键说明

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