9 lines
142 B
C
9 lines
142 B
C
|
#include "libft.h"
|
||
|
|
||
|
void ft_lstadd_back(t_list **alst, t_list *new)
|
||
|
{
|
||
|
while ((*alst)->next)
|
||
|
alst = &(*alst)->next;
|
||
|
(*alst)->next = new;
|
||
|
}
|