silc_calloc
SYNOPSIS
void *silc_calloc(size_t items, size_t size);
DESCRIPTION
Allocates memory of for an array of `items' elements of `size' bytes and returns pointer to the allocated memory area. The memory area is also zeroed. Free the memory by calling silc_free. Returns NULL on error and sets silc_errno.