2.5.15 void* calloc
void* calloc(size_t __nele, size_t __size) __ATTR_MALLOC__
Allocate nele
elements of size
each. Identical to calling malloc()
using nele * size
as argument, except the allocated memory will be cleared to zero.
void* calloc(size_t __nele, size_t __size) __ATTR_MALLOC__
Allocate nele
elements of size
each. Identical to calling malloc()
using nele * size
as argument, except the allocated memory will be cleared to zero.