/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstadd_back.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: joelecle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ /* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include void ft_lstadd_back(t_list **alst, t_list *new) { t_list *tmp; if (!alst || !new) return ; if (!*alst) *alst = new; else { tmp = ft_lstlast(*alst); tmp->next = new; } }