Synopsis
#include <stdlib.h>
void *calloc(size_t nitems, size_t size);
Description
Function allocates nitems
x size
bytes of memory and returns a pointer to the allocated memory. The allocated memory is aligned such that it can be used for any data type, including AltiVec- and SSE-related types. The allocated memory is filled with bytes of value zero.