cwextab

Crates.iocwextab
lib.rscwextab
version1.0.3
sourcesrc
created_at2024-07-08 00:56:56.869101
updated_at2024-12-06 21:59:17.106692
descriptionCodeWarrior Exception Table decoder
homepage
repositoryhttps://github.com/Celestialamber/cwextab
max_upload_size
id1295243
size39,751
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: 28

cargo fmt