diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 19:11:10 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 19:11:10 +0200 |
commit | 462e664d0fdfbe2e9eae5c7e093c5a23b202dae8 (patch) | |
tree | cff5c7b5852874c8812bfa3dc04cc8df058a2238 /libft/src/ft_lstclear.c | |
parent | Some norm (diff) | |
download | 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.gz 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.bz2 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.xz 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.tar.zst 42-minishell-462e664d0fdfbe2e9eae5c7e093c5a23b202dae8.zip |
Norm update
Diffstat (limited to 'libft/src/ft_lstclear.c')
-rw-r--r-- | libft/src/ft_lstclear.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libft/src/ft_lstclear.c b/libft/src/ft_lstclear.c index 10a6d91..37fec4e 100644 --- a/libft/src/ft_lstclear.c +++ b/libft/src/ft_lstclear.c @@ -13,16 +13,17 @@ #include <libft.h> #include <stdlib.h> -void - ft_lstclear(t_list **lst, void (*del)(void *)) +void ft_lstclear(t_list **lst, void (*del)(void *)) { t_list *tmp; t_list *renext; - if (!lst) + if (lst == NULL) + { return ; + } tmp = *lst; - while (tmp) + while (tmp != NULL) { renext = tmp->next; del(tmp->content); |