libft/srcs/lst/ft_lstsize.c

12 lines
156 B
C

#include "libft.h"
int ft_lstsize(t_list *lst)
{
int size = 0;
while (lst)
{
size++;
lst = lst->next;
}
return size;
}