/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_list_last.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/08 20:12:36 by gtertysh #+# #+# */ /* Updated: 2016/11/08 20:44:33 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_list.h" #include t_list *ft_list_last(t_list *begin_list) { while (begin_list && begin_list->next) { begin_list = begin_list->next; } return (begin_list); }