ft_memalloc - kibotrel/42-Libft GitHub Wiki

void	*ft_memalloc(size_t size)

Description :

Allocates size bytes of memory and then apply a bzero() on this memory area.

Return Value :

Returns the allocated pointer.

Source code