-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstlast.c
27 lines (24 loc) · 1.03 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
23
24
25
26
27
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstlast.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hnoh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/01/04 12:37:45 by hnoh #+# #+# */
/* Updated: 2021/01/04 12:39:03 by hnoh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
t_list *a;
a = lst;
if (a)
{
while (a->next)
a = a->next;
return (a);
}
return (NULL);
}