|
|
Allocate a zero-filled block of memory
void *Ns_Calloc(
size_t num,
size_t size
);
The Ns_Calloc function allocates a block of zero-filled memory large enough to hold the given number of elements of the given size. This function replaces the system calloc function.