Skip to main content

rust_0_6_calloc

Function rust_0_6_calloc 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn rust_0_6_calloc( num: usize, size: usize, ) -> *mut u8
Expand description

Allocate size_bytes many zeroed bytes and return a pointer.

ยงSafety

Allocated bytes must be freed using rust_0_6_free.