-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstlast.c
22 lines (20 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
21
22
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_lstlast_bonus.c :+: :+: */
/* +:+ */
/* By: cwesseli <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/10/20 10:37:50 by cwesseli #+# #+# */
/* Updated: 2022/10/20 10:38:11 by cwesseli ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (!lst)
return (0);
while (lst->next)
lst = lst->next;
return (lst);
}