-
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.c :+: :+: */
/* +:+ */
/* By: jvan-hal <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/10/11 09:16:19 by jvan-hal #+# #+# */
/* Updated: 2022/10/21 14:37:47 by jvan-hal ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (!lst)
return (NULL);
while (lst->next)
lst = lst->next;
return (lst);
}