42-archive/libft/ft_lstlast.c
2016-09-05 12:50:52 +02:00

8 lines
109 B
C

#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
while (lst->next)
lst = lst->next;
return (lst);
}