13 lines
No EOL
195 B
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;
|
|
}
|
|
} |