/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstlast.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/02/23 17:48:29 by fgras-ca #+# #+# */ /* Updated: 2023/02/23 18:02:44 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" t_list *ft_lstlast(t_list *lst) { while (lst) { if (lst->next == NULL) return (lst); lst = lst->next; } return (lst); }