pub type dynamic_MEM_fns = st_dynamic_MEM_fns;
Aliased Type§
struct dynamic_MEM_fns {
pub malloc_fn: Option<unsafe extern "C" fn(_: usize, _: *const i8, _: i32) -> *mut c_void>,
pub realloc_fn: Option<unsafe extern "C" fn(_: *mut c_void, _: usize, _: *const i8, _: i32) -> *mut c_void>,
pub free_fn: Option<unsafe extern "C" fn(_: *mut c_void, _: *const i8, _: i32)>,
}
Fields§
§malloc_fn: Option<unsafe extern "C" fn(_: usize, _: *const i8, _: i32) -> *mut c_void>
§realloc_fn: Option<unsafe extern "C" fn(_: *mut c_void, _: usize, _: *const i8, _: i32) -> *mut c_void>
§free_fn: Option<unsafe extern "C" fn(_: *mut c_void, _: *const i8, _: i32)>