├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING.txt ├── README.md └── include └── elfio ├── elf_types.hpp ├── elfio.hpp ├── elfio_dump.hpp ├── elfio_dynamic.hpp ├── elfio_header.hpp ├── elfio_note.hpp ├── elfio_relocation.hpp ├── elfio_section.hpp ├── elfio_segment.hpp ├── elfio_strings.hpp ├── elfio_symbols.hpp └── elfio_utils.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/README.md -------------------------------------------------------------------------------- /include/elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elf_types.hpp -------------------------------------------------------------------------------- /include/elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /include/elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avast/elfio/HEAD/include/elfio/elfio_utils.hpp --------------------------------------------------------------------------------