ufftools 0.1.0

reader/writer and inspect CLI for the UFF character package format. includes the uff decoder lib for use in other projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod error;
mod read;
mod write;
mod types;

pub use error::UffError;
pub use types::*;
pub use read::read_uff;
pub use write::write_uff;

#[cfg(test)]
mod tests;