5 个版本

0.2.3 2024年7月11日
0.2.2 2024年7月11日
0.2.1 2024年7月11日
0.2.0 2024年7月11日
0.1.0 2024年7月8日

#1518 in 解析器实现

Download history 346/week @ 2024-07-08 103/week @ 2024-07-15 51/week @ 2024-07-22 25/week @ 2024-07-29 96/week @ 2024-08-05 37/week @ 2024-08-12

每月252次下载

MIT/Apache

33KB
690

cwextab 最新版本 Api Rustdoc Rust 版本

WIP CodeWarrior Extab (Exception Table) 解码工具

用法

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
}

依赖项

~130KB