simple_elf 0.1.1

simple parser for amd64 elf files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(non_camel_case_types)]
#![allow(dead_code)]
pub type Elf64_Addr = u64;
pub type Elf64_Half = u16;
pub type Elf64_Off = u64;
pub type Elf64_Sword = u32;
pub type Elf64_Sxword = u64;
pub type Elf64_Word = u32;
pub type Elf64_Xword = u64;
pub type Elf64_Byte = u8;
pub type Elf64_Section = u16;
/*
these types are not used in any part
its here as to show the equevelent rust types for
types in elf documentation
*/