SP_calloc()
#include <sicstus/sicstus.h> void * SP_calloc(size_t nmemb, size_t size);
Allocates a block of at least size * nemb. The first size * nmemb bytes are set to zero.
size * nemb
size * nmemb
The pointer, if allocation was successful, otherwise NULL.
NULL
OS Memory Management.