-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstlast.c
21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstlast.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fraqioui <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/12 10:52:08 by fraqioui #+# #+# */
/* Updated: 2022/10/18 17:25:39 by fraqioui ### ########.fr */
/* */
/* ************************************************************************** */
#include"libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (!lst)
return (NULL);
while (lst->next)
lst = lst->next;
return (lst);
}