-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstlast.c
28 lines (25 loc) · 1.05 KB
/
ft_lstlast.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstlast.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aymoulou <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/13 09:01:49 by aymoulou #+# #+# */
/* Updated: 2021/08/31 13:30:58 by aymoulou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
t_list *last;
if (!lst)
return (NULL);
while (lst)
{
if (!lst->next)
last = lst;
lst = lst->next;
}
return (last);
}