mod crc32; use core::ffi::c_void; pub use crc32::*; #[inline] pub(crate) fn ref_to_voidptr(r: &T) -> *const c_void { r as *const T as *const c_void }