|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| void * | ft_calloc (size_t count, size_t size) |
| Allocate and zero. | |
| void * ft_calloc | ( | size_t | count, |
| size_t | size | ||
| ) |
Allocate and zero.
Allocates memory and sets every byte to 0.
| count | How many elements |
| size | Size of a element (eg. 4 bytes) |
Definition at line 15 of file ft_calloc.c.