10 releases (3 stable)
1.0.2 | Oct 2, 2024 |
---|---|
0.3.1 | Sep 24, 2024 |
0.2.3 | Jul 11, 2024 |
0.1.0 | Jul 8, 2024 |
#712 in Parser implementations
578 downloads per month
Used in objdiff-core
40KB
904 lines
cwextab
WIP CodeWarrior Extab (Exception Table) decoder tool
Usage
use cwextab::*;
fn example(extab: &[u8]){
let result = decode_extab(extab);
let data = match result {
Some(val) => val,
None => {
panic!("An error happened");
},
};
//do stuffs
}
Dependencies
~265–730KB
~17K SLoC