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 解析器实现
每月252次下载
33KB
690 行
cwextab
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