libft
|
Go to the source code of this file.
Functions | |
void * | ft_memalloc (size_t size) |
Allocates memory of a given size and initializes it to 0. More... | |
void* ft_memalloc | ( | size_t | size | ) |
Allocates memory of a given size and initializes it to 0.
size | The size of the memory that needs to be allocated. |
NULL
if allocation fails. Definition at line 24 of file ft_memalloc.c.