cwextab 1.1.7

CodeWarrior Exception Table decoder
Documentation

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
}