libft/ft_lstadd_back.c

9 lines
142 B
C
Raw Normal View History

2024-10-13 17:10:04 +00:00
#include "libft.h"
void ft_lstadd_back(t_list **alst, t_list *new)
{
while ((*alst)->next)
alst = &(*alst)->next;
(*alst)->next = new;
}