aboutsummaryrefslogtreecommitdiff
path: root/src/dlst/ft_dlstdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dlst/ft_dlstdestroy.c')
-rw-r--r--src/dlst/ft_dlstdestroy.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/dlst/ft_dlstdestroy.c b/src/dlst/ft_dlstdestroy.c
new file mode 100644
index 0000000..6ce0d98
--- /dev/null
+++ b/src/dlst/ft_dlstdestroy.c
@@ -0,0 +1,32 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_dlstdestroy.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/03 15:22:51 by charles #+# #+# */
+/* Updated: 2020/04/03 15:44:26 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "libft_dlst.h"
+
+void ft_dlstdestroy(t_ftdlst *dlst, t_ftdel_func del)
+{
+ if (dlst == NULL)
+ return ;
+ if (dlst->prev != NULL)
+ {
+ dlst->prev->next = NULL;
+ ft_dlstdestroy(dlst->prev, del);
+ }
+ if (dlst->next != NULL)
+ {
+ dlst->next->prev = NULL;
+ ft_dlstdestroy(dlst->next, del);
+ }
+ if (del != NULL)
+ del(dlst->data);
+ free(dlst);
+}