//! CRC32C (Castagnoli) implementation shared by EROFS and ext4 formatters.
//--------------------------------------------------------------------------------------------------
// Functions
//--------------------------------------------------------------------------------------------------
/// Raw CRC32C with configurable seed and no final XOR.
///
/// This is the primitive used by ext4 metadata checksums (which chain
/// multiple CRC calls with intermediate seeds). For standard CRC32C,
/// call with `seed = 0xFFFF_FFFF` and XOR the result with `0xFFFF_FFFF`.
pub