-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memdel.c
executable file
·23 lines (21 loc) · 1004 Bytes
/
ft_memdel.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jpinyot <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/13 17:17:51 by jpinyot #+# #+# */
/* Updated: 2017/11/14 22:40:57 by jpinyot ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_memdel(void **ap)
{
if (ap != NULL)
{
if (*ap)
free(*ap);
*ap = NULL;
}
}