/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_memdel.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2020/01/09 15:58:16 by rbousset #+# ## ## #+# */ /* Updated: 2020/01/09 15:58:17 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include void ft_memdel(void **ptr) { free(*ptr); *ptr = NULL; }