-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstlast.c
22 lines (20 loc) · 1.02 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: mcatal-d <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/10 11:04:40 by mcatal-d #+# #+# */
/* Updated: 2022/11/10 11:42:18 by mcatal-d ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (lst == NULL)
return (0);
while (lst -> next != NULL)
lst = lst -> next;
return (lst);
}