pub type TidyRealloc = Option<unsafe extern "C" fn(buf: *mut c_void, len: usize) -> *mut c_void>;Expand description
Callback for realloc replacement
Aliased Type§
pub enum TidyRealloc {
None,
Some(unsafe extern "C" fn(*mut c_void, usize) -> *mut c_void),
}