42-archive/libft/ft_memdel.c
2016-08-28 16:33:44 +02:00

7 lines
75 B
C

#include "libft.h"
void ft_memdel(void **ap)
{
free(*ap);
*ap = NULL;
}