libft/srcs/lst/ft_lstclear.c

13 lines
No EOL
195 B
C

#include "libft.h"
#include <stdlib.h>
void ft_lstclear(t_list **lst)
{
t_list *tmp;
while (lst && *lst)
{
tmp = (*lst)->next;
free(*lst);
*lst = tmp;
}
}