aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_lstlast.c
blob: 68b633797e5614fdf108f480a9f0375ef70279ac (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "libft.h"

t_list *
ft_lstlast (t_list *lst)
{
  if (!lst)
    return (NULL);
  while (lst->next)
    lst = lst->next;
  return (lst);
}