archivelib 0.2.0

An implementaton of the Greenleaf ArchiveLib compression/decompression algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod base;
mod correct;

#[cfg(test)]
mod expected;

pub use self::base::{LookAheadBitwiseRead, LookAheadBitwiseReader};
pub use self::correct::{CorrectLookAheadBitwiseRead, CorrectLookAheadBitwiseReader};

#[cfg(test)]
pub use self::expected::ExpectedCallLookAheadBitwiseReader;