Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 274 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 274 Bytes

nlzss11

Library for (de)compressing data according to the algorithm found in games like The Legend of Zelda: Skyward Sword

For this, there are 2 functions:

fn compress(data: &[u8]) -> Vec<u8>;
fn decompress(data: &[u8]) -> Result<Vec<u8>, DecompressError>;