cwextab

Crates.iocwextab
lib.rscwextab
version0.2.3
sourcesrc
created_at2024-07-08 00:56:56.869101
updated_at2024-07-11 23:07:53.391889
descriptionCodeWarrior Exception Table decoder
homepage
repositoryhttps://github.com/Celestialamber/cwextab
max_upload_size
id1295243
size32,381
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 {
    Some(val) => val,
    None => {
      panic!("An error happened");
    },
  };
  //do stuffs
}
Commit count: 21

cargo fmt