/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_list_last.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/09 17:18:58 by cacharle #+# #+# */ /* Updated: 2019/07/09 17:18:59 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_list.h" t_list *ft_list_last(t_list *begin_list) { while (begin_list->next) begin_list = begin_list->next; return (begin_list); }