goblin 0.0.6

An impish, cross-platform binary parsing and loading crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The ELF 32-bit struct definitions and associated values

#[path="header32.rs"]
pub mod header;
#[path="sym32.rs"]
pub mod sym;
#[path="program_header32.rs"]
pub mod program_header;
#[path="section_header32.rs"]
pub mod section_header;
#[path="dyn32.rs"]
pub mod dyn;
#[path="rela32.rs"]
pub mod rela;

#[cfg(feature = "std")]
pub use elf::strtab;