1mod bitstream; 2pub use bitstream::*; 3pub mod constants; 4pub mod errors; 5 6#[cfg(test)] 7mod tests; 8 9macro_rules! debug_test { 10 ($($arg:tt)*) => {{ 11 //#[cfg(test)] 12 //println!($($arg)*); 13 }}; 14} 15pub(crate) use debug_test;