pub fn decompress(src: &[u8], dst: &mut [u8]) -> Result<(), LzoError>Expand description
Decompress LZO1X-1 compressed data into dst.
The caller must provide a buffer of exactly the expected decompressed
size (e.g. 4096 bytes for a Linux zram page). Returns LzoError::OutputLength
if the actual decompressed size differs from dst.len().