aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_lstsize.c
blob: 2986498c3e41ddf7e47761a833bd9cf4ce2b2837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "libft.h"

int
ft_lstsize (t_list *lst)
{
  int count;

  count = 0;
  while (lst)
    {
      count++;
      lst = lst->next;
    }
  return (count);
}