[][src]Function relox::elf32_relocate

pub fn elf32_relocate<F>(data: &[u8], op: &mut F) -> Result<usize, Error> where
    F: FnMut(u8, u32) -> Result<(), Error>, 

Processes a compressed ELF32 relocation section and calls op for every relocation for further processing.

Errors

If the compressed relocation section is malformed.

Panics

If the provided data is too small for any reason and no_bounds_check feature is not requested.