cwextab 0.3.0

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 {
    Some(val) => val,
    None => {
      panic!("An error happened");
    },
  };
  //do stuffs
}