⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shdrtab.h

📁 ELFkickers是一组elf工具
💻 H
字号:
/* shdrtab.h: Functions for handling the section header table entries. * * Copyright (C) 1999-2001 by Brian Raiter, under the GNU General * Public License. No warranty. See COPYING for details. */#ifndef	_shdrtab_h_#define	_shdrtab_h_#include	"elf.h"/* Initializes the section header table (this function must be called * before any of the others in this module), and assigns each section * a name (for the C enum). */extern int enumsections(Elf32_Ehdr const *ehdr, Elf32_Shdr const *shdrs,			char const *shstrtab);/* Returns the section header table entry for a given index. */extern Elf32_Shdr const *getshdr(int shndx);/* Returns the enum name of a section for a given index. */extern char const *getshdrname(int shndx);/* Returns the actual name (as stored in the section header string * table) of a section for a given index, or NULL if no such name * exists. */extern char const *getshdrtruename(int shndx);/* Outputs the enumeration of the sections. Returns FALSE if no such * enumeration can be output. */extern int outshdrnames(void);#endif

⌨️ 快捷键说明

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