Crates.io | cwextab |
lib.rs | cwextab |
version | 1.0.2 |
source | src |
created_at | 2024-07-08 00:56:56.869101 |
updated_at | 2024-10-02 06:07:51.964504 |
description | CodeWarrior Exception Table decoder |
homepage | |
repository | https://github.com/Celestialamber/cwextab |
max_upload_size | |
id | 1295243 |
size | 39,868 |
WIP CodeWarrior Extab (Exception Table) decoder tool
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
}