WIP CodeWarrior Extab (Exception Table) decoder tool
use cwextab::*; fn example(extab: &[u8]){ let result = decode_extab(extab); let data = match result { Ok(val) => val, Err(e) => { panic!("An error happened: {}", e); }, }; //do stuffs }