/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memdel.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 10:26:10 by scebula #+# #+# */ /* Updated: 2015/11/26 10:26:37 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_memdel(void **ap) { free(*ap); *ap = NULL; }