/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstadd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 13:13:20 by scebula #+# #+# */ /* Updated: 2015/11/28 02:30:13 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_lstadd(t_list **alst, t_list *new) { new->next = *alst; *alst = new; }