pub unsafe extern "C" fn mi_calloc( count: usize, size: usize) -> *mut c_void
Allocate count items of size length each.
count
size
Returns null if count * size overflows or on out-of-memory.
null
count * size
All items are initialized to zero.