Function snmalloc_sys::sn_calloc
source ยท pub unsafe extern "C" fn sn_calloc(
count: usize,
size: usize,
) -> *mut c_voidExpand description
Allocate count items of size length each.
Returns null if count * size overflows or on out-of-memory.
All items are initialized to zero.