explode 0.1.2

A decompression implementation for the implode algorithm from the PKWARE Data Compression Library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(test)]
pub const EXAMPLES: &[(&[u8], &[u8])] = &[
    (
        // from the newsgroup post
        &[0x00, 0x04, 0x82, 0x24, 0x25, 0x8f, 0x80, 0x7f],
        &[
            0x41, 0x49, 0x41, 0x49, 0x41, 0x49, 0x41, 0x49, 0x41, 0x49, 0x41,
            0x49, 0x41,
        ],
    ),
    (
        include_bytes!("examples/undhr.z"),
        include_bytes!("examples/undhr.md"),
    ),
];