Enum alloc_no_stdlib::AllocatorC
source · pub enum AllocatorC {
Calloc(unsafe extern "C" fn(_: usize, _: usize) -> *mut u8),
Malloc(unsafe extern "C" fn(_: usize) -> *mut u8),
Custom(fn(_: usize) -> *mut u8),
}
pub enum AllocatorC {
Calloc(unsafe extern "C" fn(_: usize, _: usize) -> *mut u8),
Malloc(unsafe extern "C" fn(_: usize) -> *mut u8),
Custom(fn(_: usize) -> *mut u8),
}