elrond 1.0.0

Standard conformant elf parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#![allow(dead_code,unused_imports)]

mod file_type;
pub use self::file_type::{FileType,ElfFileType};

mod arch;
pub use self::arch::{Arch,ElfArch};

mod traits;
pub use self::traits::{ElfHeader};

mod header32;
mod header64;
mod header;
pub use self::header::{parse_elf, ElfHeaderBase};