ft_lstlast.c
1 /* ************************************************************************** */ 2 /* */ 3 /* ::: :::::::: */ 4 /* ft_lstlast.c :+: :+: :+: */ 5 /* +:+ +:+ +:+ */ 6 /* By: gychoi <marvin@42.fr> +#+ +:+ +#+ */ 7 /* +#+#+#+#+#+ +#+ */ 8 /* Created: 2022/07/12 14:41:02 by gychoi #+# #+# */ 9 /* Updated: 2022/07/12 14:44:50 by gychoi ### ########.fr */ 10 /* */ 11 /* ************************************************************************** */ 12 13 #include "libft.h" 14 15 t_list *ft_lstlast(t_list *lst) 16 { 17 if (!lst) 18 return (NULL); 19 while (lst->next != NULL) 20 lst = lst->next; 21 return (lst); 22 }