Type Alias tidy_sys::TidyRealloc

source ·
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§

enum TidyRealloc {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: usize) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.