/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_lstlast.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/13 09:53:13 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 10:11:09 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include "libft.h" #include t_list *ft_lstlast(t_list *lst) { if (!lst) return (NULL); while (lst->next != NULL) lst = lst->next; return (lst); }