Type Alias roaring_memory_t
Source pub type roaring_memory_t = roaring_memory_s;
struct roaring_memory_t {
pub malloc: Option<unsafe extern "C" fn(usize) -> *mut c_void>,
pub realloc: Option<unsafe extern "C" fn(*mut c_void, usize) -> *mut c_void>,
pub calloc: Option<unsafe extern "C" fn(usize, usize) -> *mut c_void>,
pub free: Option<unsafe extern "C" fn(*mut c_void)>,
pub aligned_malloc: Option<unsafe extern "C" fn(usize, usize) -> *mut c_void>,
pub aligned_free: Option<unsafe extern "C" fn(*mut c_void)>,
}