13 lines
No EOL
200 B
C
13 lines
No EOL
200 B
C
#include "libft.h"
|
|
#include <stdlib.h>
|
|
|
|
void ft_slist_clear(t_slist **lst)
|
|
{
|
|
t_slist *tmp;
|
|
while (lst && *lst)
|
|
{
|
|
tmp = (*lst)->next;
|
|
free(*lst);
|
|
*lst = tmp;
|
|
}
|
|
} |