cf_calloc¶
Category: allocator
GitHub: cute_alloc.h
Allocates a block of memory size count
bytes in size.
Remarks¶
The memory returned is completely zero'd out. Generally this is more efficient than calling cf_malloc
and
then clearing the memory to zero yourself. Though, it's not a concern for most games.
Related Pages¶
CF_Allocator
cf_allocator_override
cf_allocator_restore_default
cf_alloc
cf_free
cf_realloc