/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memalloc.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/25 17:32:00 by bchanot #+# #+# */ /* Updated: 2015/12/07 14:31:29 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" #include void *ft_memalloc(size_t size) { void *mem; mem = (void*)malloc(size); if (!mem) return (NULL); ft_bzero(mem, size); return (mem); }