-
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: earnaud <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/15 18:42:27 by earnaud #+# #+# */
/* Updated: 2020/11/15 19:23:20 by earnaud ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (!(lst))
return (0);
while (lst->next)
lst = lst->next;
return (lst);
}