pub type dynamic_MEM_fns = st_dynamic_MEM_fns;
Aliased Type§
#[repr(C)]pub 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)>