falcon 0.6.0

A Binary Analysis Framework in Rust
Documentation
1
2
3
4
5
6
7
//! ELF Linker/Loader
#[allow(clippy::module_inception)]
mod elf;
mod elf_linker;

pub use self::elf::Elf;
pub use self::elf_linker::{ElfLinker, ElfLinkerBuilder};