-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memdel.c
26 lines (24 loc) · 1.02 KB
/
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
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memdel.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hshawand <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/03 11:07:35 by hshawand #+# #+# */
/* Updated: 2019/04/15 15:25:12 by hshawand ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include <string.h>
void ft_memdel(void **ap)
{
if (ap != NULL)
{
if (*ap != NULL)
{
free(*ap);
*ap = NULL;
}
}
}