├── .gitignore ├── GPATH ├── GRTAGS ├── GTAGS ├── Makefile ├── README.md ├── TODO ├── bin └── dwarf ├── comment.c ├── dynamic.c ├── example.c ├── frame.c ├── note.c ├── objs └── dwarf ├── parse.c ├── parse.h ├── relocation.c ├── strtab.c ├── symtab.c └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/.gitignore -------------------------------------------------------------------------------- /GPATH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/GPATH -------------------------------------------------------------------------------- /GRTAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/GRTAGS -------------------------------------------------------------------------------- /GTAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/GTAGS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | CC=gcc 2 | CFLAGS=-g -wall -fPIE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/TODO -------------------------------------------------------------------------------- /bin/dwarf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/bin/dwarf -------------------------------------------------------------------------------- /comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/comment.c -------------------------------------------------------------------------------- /dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/dynamic.c -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/example.c -------------------------------------------------------------------------------- /frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/frame.c -------------------------------------------------------------------------------- /note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/note.c -------------------------------------------------------------------------------- /objs/dwarf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/objs/dwarf -------------------------------------------------------------------------------- /parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/parse.c -------------------------------------------------------------------------------- /parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/parse.h -------------------------------------------------------------------------------- /relocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/relocation.c -------------------------------------------------------------------------------- /strtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/strtab.c -------------------------------------------------------------------------------- /symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/symtab.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rxOred/elfparse/HEAD/test.c --------------------------------------------------------------------------------