void *silc_calloc(size_t items, size_t size);
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.