ft_memdel.c 998 B

123456789101112131415161718192021
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* ft_memdel.c :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2015/11/25 17:36:33 by bchanot #+# #+# */
  9. /* Updated: 2016/11/08 11:05:21 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #include "libft.h"
  13. #include <stdlib.h>
  14. void ft_memdel(void **ap)
  15. {
  16. if (*ap)
  17. free(*ap);
  18. *ap = NULL;
  19. }