-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_pointer_free.c
More file actions
19 lines (17 loc) · 977 Bytes
/
simple_pointer_free.c
File metadata and controls
19 lines (17 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* simple_pointer_free.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mamoussa <mamoussa@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/13 16:50:51 by mamoussa #+# #+# */
/* Updated: 2020/12/10 18:02:21 by mamoussa ### ########.fr */
/* */
/* ************************************************************************** */
#include "shell.h"
void simple_pointer_free(char *ptr)
{
free(ptr);
ptr = NULL;
}