Crates.io | cwextab |
lib.rs | cwextab |
version | 1.0.3 |
source | src |
created_at | 2024-07-08 00:56:56.869101 |
updated_at | 2024-12-06 21:59:17.106692 |
description | CodeWarrior Exception Table decoder |
homepage | |
repository | https://github.com/Celestialamber/cwextab |
max_upload_size | |
id | 1295243 |
size | 39,751 |
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
}