1//! Internal helper crate for paketkoll & konfigkoll. 2//! 3//! Not for external usage. No stability guarantees whatsoever. 4 5pub mod checksum; 6 7/// Mask out the bits of the mode that are actual permissions 8pub const MODE_MASK: u32 = 0o7777;