A decompression library for the AZO format.
let compressed = std::fs::read("data.azo")?;
let mut out = Vec::new();
let crc = libazo::extract_azo(&mut &compressed[..], &mut out, compressed.len() as u64, None, None)?;
println!("{} bytes, crc {crc:08x}", out.len());See the documentation for the full API.