pub unsafe extern "C" fn simple_array_init(
instance: *mut SimpleArray,
count: u32,
)Expand description
Initialise a SimpleArray instance by allocating additional space to contain the requested number of elements. If init() is specified in the config, then it is called for each element, otherwise the data is filled with zeroes.
§Arguments
[in]- instance Pointer to the SimpleArray instance to be init’d[in]- count Number of elements to be allocated and init’d