sds_calloc

void* sds_calloc (size_t howmany, size_t size);


Allocate memory for an array.


This function allocates sufficient memory for an array. The array contains howmany elements, each element taking up size bytes of memory.

This function returns a pointer to the first element of the array in memory.

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)