16 lines
193 B
C
16 lines
193 B
C
#include "libft.h"
|
|
|
|
void ft_lsteadd(t_list **alst, t_list *new)
|
|
{
|
|
t_list *lst;
|
|
|
|
lst = *alst;
|
|
if (lst)
|
|
{
|
|
while (lst->next)
|
|
lst = lst->next;
|
|
lst->next = new;
|
|
}
|
|
else
|
|
*alst = new;
|
|
}
|