diff options
Diffstat (limited to 'ft_lstclear_bonus.c')
| -rw-r--r-- | ft_lstclear_bonus.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ft_lstclear_bonus.c b/ft_lstclear_bonus.c deleted file mode 100644 index ee1d9e5..0000000 --- a/ft_lstclear_bonus.c +++ /dev/null @@ -1,24 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* ft_lstclear_bonus.c :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2019/10/09 09:02:39 by cacharle #+# #+# */ -/* Updated: 2019/11/20 04:02:37 by cacharle ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#include "libft.h" - -void ft_lstclear(t_list **lst, void (*del)(void *)) -{ - if (lst == NULL) - return ; - if (*lst == NULL) - return ; - ft_lstclear(&((*lst)->next), del); - ft_lstdelone(*lst, del); - *lst = NULL; -} |
