-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memdel.c
25 lines (22 loc) · 1.1 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
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_memdel.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/10/18 15:07:29 by davfelix #+# ## ## #+# */
/* Updated: 2018/10/31 11:59:13 by davfelix ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void ft_memdel(void **ap)
{
unsigned char **mem;
if (ap == NULL)
return ;
mem = (unsigned char **)ap;
free(*mem);
*mem = NULL;
}