pub type TidyMalloc = Option<unsafe extern "C" fn(len: usize) -> *mut c_void>;
Callback for malloc replacement
malloc
pub enum TidyMalloc { None, Some(unsafe extern "C" fn(usize) -> *mut c_void), }
No value.
Some value of type T.
T