-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstlast.c
20 lines (18 loc) · 1 KB
/
ft_lstlast.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstlast.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edboutil <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/17 19:18:36 by edboutil #+# #+# */
/* Updated: 2022/11/25 13:39:14 by edboutil ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
while (lst != NULL && lst->next != NULL)
lst = lst->next;
return (lst);
}