pub unsafe extern "C" fn OQS_MEM_calloc(
num_elements: usize,
element_size: usize,
) -> *mut c_voidExpand description
Allocates memory for an array of elements of a given size. @param num_elements The number of elements to allocate. @param element_size The size of each element in bytes. @return A pointer to the allocated memory.