summaryrefslogtreecommitdiffstats
path: root/libft/src
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 19:21:23 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 19:21:23 +0200
commit0daacec366aab889b2b24d7fc6edebe1370d7e28 (patch)
treeb16cf4d5c03751838896acee6c2d6129f3372b3b /libft/src
parentContinuing (diff)
download42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.gz
42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.bz2
42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.xz
42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.zst
42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.zip
Linked list not working but ok
Diffstat (limited to 'libft/src')
-rw-r--r--libft/src/ft_delwords.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/libft/src/ft_delwords.c b/libft/src/ft_delwords.c
new file mode 100644
index 0000000..79c671d
--- /dev/null
+++ b/libft/src/ft_delwords.c
@@ -0,0 +1,28 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_delwords.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <libft.h>
+#include <stddef.h>
+
+void
+ ft_delwords(char **words)
+{
+ size_t i;
+
+ i = 0;
+ while (words[i])
+ {
+ ft_memdel((void*)&words[i]);
+ i++;
+ }
+ ft_memdel((void*)&words);
+}