-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstlast.c
23 lines (21 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
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstlast.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: esuguimo <esuguimo@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/17 19:55:56 by esuguimo #+# #+# */
/* Updated: 2020/02/27 13:26:20 by esuguimo ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (!lst)
return (NULL);
if (lst != NULL)
while (lst->next)
lst = lst->next;
return (lst);
}