aboutsummaryrefslogtreecommitdiff
path: root/ft_strdel.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_strdel.c')
-rw-r--r--ft_strdel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ft_strdel.c b/ft_strdel.c
new file mode 100644
index 0000000..62debcc
--- /dev/null
+++ b/ft_strdel.c
@@ -0,0 +1,6 @@
+#include "libft.h"
+
+void ft_strdel(char **as)
+{
+ ft_memdel((void*)as);
+}