#[unsafe(no_mangle)]pub unsafe extern "C" fn rust_0_6_calloc(
num: usize,
size: usize,
) -> *mut u8Expand description
Allocate size_bytes many zeroed bytes and return a pointer.
ยงSafety
Allocated bytes must be freed using rust_0_6_free.