TidyMalloc

Type Alias TidyMalloc 

Source
pub type TidyMalloc = Option<unsafe extern "C" fn(len: usize) -> *mut c_void>;
Expand description

Callback for malloc replacement

Aliased Type§

pub enum TidyMalloc {
    None,
    Some(unsafe extern "C" fn(usize) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(usize) -> *mut c_void)

Some value of type T.