├── .gitignore ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── MANIFEST ├── Makefile.in ├── README ├── Unix ├── .gitignore └── Makefile ├── VC ├── .gitignore ├── check.c.w32 ├── libelf.def ├── libelf.sln ├── libelf.vcproj └── prebuild.bat ├── VERSION ├── acconfig.h ├── aclocal.m4 ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.in ├── install-sh ├── lib ├── .gitignore ├── 32.fsize.c ├── 32.getehdr.c ├── 32.getphdr.c ├── 32.getshdr.c ├── 32.newehdr.c ├── 32.newphdr.c ├── 32.xlatetof.c ├── 64.xlatetof.c ├── Makefile.in ├── Makefile.w32 ├── assert.c ├── begin.c ├── build.bat ├── byteswap.h ├── checksum.c ├── cntl.c ├── config.h.w32 ├── cook.c ├── data.c ├── elf_repl.h ├── end.c ├── errmsg.c ├── errno.c ├── errors.h ├── ext_types.h ├── fill.c ├── flag.c ├── gelf.h ├── gelfehdr.c ├── gelfphdr.c ├── gelfshdr.c ├── gelftrans.c ├── getarhdr.c ├── getarsym.c ├── getbase.c ├── getdata.c ├── getident.c ├── getscn.c ├── hash.c ├── input.c ├── kind.c ├── libelf.def ├── libelf.h ├── memset.c ├── ndxscn.c ├── newdata.c ├── newscn.c ├── next.c ├── nextscn.c ├── nlist.c ├── nlist.h ├── opt.delscn.c ├── private.h ├── rand.c ├── rawdata.c ├── rawfile.c ├── strptr.c ├── swap64.c ├── sys_elf.h.in ├── sys_elf.h.w32 ├── update.c ├── verdef.h ├── verdef_32_tof.c ├── verdef_32_tom.c ├── verdef_64_tof.c ├── verdef_64_tom.c ├── verneed.h ├── version.c ├── x.elfext.c ├── x.movscn.c └── x.remscn.c ├── libelf.pc.in ├── mkinstalldirs ├── po ├── Makefile.in ├── de.gmo ├── de.msg ├── de.po ├── gmo2msg.c ├── libelf.pot └── stamp-po └── stamp-h.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/INSTALL -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/README -------------------------------------------------------------------------------- /Unix/.gitignore: -------------------------------------------------------------------------------- 1 | !Makefile 2 | libelf.so* 3 | 4 | -------------------------------------------------------------------------------- /Unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/Unix/Makefile -------------------------------------------------------------------------------- /VC/.gitignore: -------------------------------------------------------------------------------- 1 | Release 2 | Debug 3 | check.c 4 | libelf.vcproj.* 5 | *.suo 6 | *.ncb -------------------------------------------------------------------------------- /VC/check.c.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/VC/check.c.w32 -------------------------------------------------------------------------------- /VC/libelf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/VC/libelf.def -------------------------------------------------------------------------------- /VC/libelf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/VC/libelf.sln -------------------------------------------------------------------------------- /VC/libelf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/VC/libelf.vcproj -------------------------------------------------------------------------------- /VC/prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/VC/prebuild.bat -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.8.12 2 | -------------------------------------------------------------------------------- /acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/acconfig.h -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/configure.in -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/install-sh -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | sys_elf.h -------------------------------------------------------------------------------- /lib/32.fsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.fsize.c -------------------------------------------------------------------------------- /lib/32.getehdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.getehdr.c -------------------------------------------------------------------------------- /lib/32.getphdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.getphdr.c -------------------------------------------------------------------------------- /lib/32.getshdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.getshdr.c -------------------------------------------------------------------------------- /lib/32.newehdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.newehdr.c -------------------------------------------------------------------------------- /lib/32.newphdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.newphdr.c -------------------------------------------------------------------------------- /lib/32.xlatetof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/32.xlatetof.c -------------------------------------------------------------------------------- /lib/64.xlatetof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/64.xlatetof.c -------------------------------------------------------------------------------- /lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/Makefile.in -------------------------------------------------------------------------------- /lib/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/Makefile.w32 -------------------------------------------------------------------------------- /lib/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/assert.c -------------------------------------------------------------------------------- /lib/begin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/begin.c -------------------------------------------------------------------------------- /lib/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/build.bat -------------------------------------------------------------------------------- /lib/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/byteswap.h -------------------------------------------------------------------------------- /lib/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/checksum.c -------------------------------------------------------------------------------- /lib/cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/cntl.c -------------------------------------------------------------------------------- /lib/config.h.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/config.h.w32 -------------------------------------------------------------------------------- /lib/cook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/cook.c -------------------------------------------------------------------------------- /lib/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/data.c -------------------------------------------------------------------------------- /lib/elf_repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/elf_repl.h -------------------------------------------------------------------------------- /lib/end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/end.c -------------------------------------------------------------------------------- /lib/errmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/errmsg.c -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/errno.c -------------------------------------------------------------------------------- /lib/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/errors.h -------------------------------------------------------------------------------- /lib/ext_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/ext_types.h -------------------------------------------------------------------------------- /lib/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/fill.c -------------------------------------------------------------------------------- /lib/flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/flag.c -------------------------------------------------------------------------------- /lib/gelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/gelf.h -------------------------------------------------------------------------------- /lib/gelfehdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/gelfehdr.c -------------------------------------------------------------------------------- /lib/gelfphdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/gelfphdr.c -------------------------------------------------------------------------------- /lib/gelfshdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/gelfshdr.c -------------------------------------------------------------------------------- /lib/gelftrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/gelftrans.c -------------------------------------------------------------------------------- /lib/getarhdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/getarhdr.c -------------------------------------------------------------------------------- /lib/getarsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/getarsym.c -------------------------------------------------------------------------------- /lib/getbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/getbase.c -------------------------------------------------------------------------------- /lib/getdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/getdata.c -------------------------------------------------------------------------------- /lib/getident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/getident.c -------------------------------------------------------------------------------- /lib/getscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/getscn.c -------------------------------------------------------------------------------- /lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/hash.c -------------------------------------------------------------------------------- /lib/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/input.c -------------------------------------------------------------------------------- /lib/kind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/kind.c -------------------------------------------------------------------------------- /lib/libelf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/libelf.def -------------------------------------------------------------------------------- /lib/libelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/libelf.h -------------------------------------------------------------------------------- /lib/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/memset.c -------------------------------------------------------------------------------- /lib/ndxscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/ndxscn.c -------------------------------------------------------------------------------- /lib/newdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/newdata.c -------------------------------------------------------------------------------- /lib/newscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/newscn.c -------------------------------------------------------------------------------- /lib/next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/next.c -------------------------------------------------------------------------------- /lib/nextscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/nextscn.c -------------------------------------------------------------------------------- /lib/nlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/nlist.c -------------------------------------------------------------------------------- /lib/nlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/nlist.h -------------------------------------------------------------------------------- /lib/opt.delscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/opt.delscn.c -------------------------------------------------------------------------------- /lib/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/private.h -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rawdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/rawdata.c -------------------------------------------------------------------------------- /lib/rawfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/rawfile.c -------------------------------------------------------------------------------- /lib/strptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/strptr.c -------------------------------------------------------------------------------- /lib/swap64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/swap64.c -------------------------------------------------------------------------------- /lib/sys_elf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/sys_elf.h.in -------------------------------------------------------------------------------- /lib/sys_elf.h.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/sys_elf.h.w32 -------------------------------------------------------------------------------- /lib/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/update.c -------------------------------------------------------------------------------- /lib/verdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/verdef.h -------------------------------------------------------------------------------- /lib/verdef_32_tof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/verdef_32_tof.c -------------------------------------------------------------------------------- /lib/verdef_32_tom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/verdef_32_tom.c -------------------------------------------------------------------------------- /lib/verdef_64_tof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/verdef_64_tof.c -------------------------------------------------------------------------------- /lib/verdef_64_tom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/verdef_64_tom.c -------------------------------------------------------------------------------- /lib/verneed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/verneed.h -------------------------------------------------------------------------------- /lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/version.c -------------------------------------------------------------------------------- /lib/x.elfext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/x.elfext.c -------------------------------------------------------------------------------- /lib/x.movscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/x.movscn.c -------------------------------------------------------------------------------- /lib/x.remscn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/lib/x.remscn.c -------------------------------------------------------------------------------- /libelf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/libelf.pc.in -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /po/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/po/Makefile.in -------------------------------------------------------------------------------- /po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/po/de.gmo -------------------------------------------------------------------------------- /po/de.msg: -------------------------------------------------------------------------------- 1 | $set 1 Automatically created from de.gmo by gmo2msg 2 | -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/po/de.po -------------------------------------------------------------------------------- /po/gmo2msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/po/gmo2msg.c -------------------------------------------------------------------------------- /po/libelf.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfgangSt/libelf/HEAD/po/libelf.pot -------------------------------------------------------------------------------- /po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | --------------------------------------------------------------------------------