cwextab

Crates.iocwextab
lib.rscwextab
version1.1.5
created_at2024-07-08 00:56:56.869101+00
updated_at2025-07-22 03:12:17.207741+00
descriptionCodeWarrior Exception Table decoder
homepage
repositoryhttps://github.com/Celestialamber/cwextab
max_upload_size
id1295243
size45,295
Amber Brault (CelestialAmber)

documentation

README

cwextab Latest Version Api Rustdoc Rust Version

WIP CodeWarrior Extab (Exception Table) decoder tool

Usage

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
}
Commit count: 35

cargo fmt