index
:
libft.git
cub3d
fractol
ft_ls
ft_select
ft_ssl
malloc
master
minishell
push_swap
rendu
scop
School project: Rewritting some libc functions and adding new ones
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ft_memdel.c
blob: 6d4cd6fa643e5ab9978446589c46ea1b7f9bf8b5 (
plain
)
1
2
3
4
5
6
7
#include <stdlib.h>
void
ft_memdel
(
void
**
ap
)
{
free
(*
ap
);
*
ap
=
NULL
;
}