| Crates.io | cwextab |
| lib.rs | cwextab |
| version | 1.1.5 |
| created_at | 2024-07-08 00:56:56.869101+00 |
| updated_at | 2025-07-22 03:12:17.207741+00 |
| description | CodeWarrior Exception Table decoder |
| homepage | |
| repository | https://github.com/Celestialamber/cwextab |
| max_upload_size | |
| id | 1295243 |
| size | 45,295 |
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
}