-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstlast_bonus.c
22 lines (20 loc) · 1007 Bytes
/
ft_lstlast_bonus.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_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jfreitas <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/18 12:21:46 by jfreitas #+# #+# */
/* Updated: 2019/11/21 09:54:00 by jfreitas ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
while (lst->next)
{
lst = lst->next;
}
return (lst);
}