ft_lstsize - gabrielcoelhodacunha-old/42sp-libft GitHub Wiki
Description
Counts the number of elements of lst
.
Implementation
int ft_lstsize(t_list *lst)
{
int size;
t_list *tmp;
size = 0;
tmp = lst;
while (tmp)
{
tmp = tmp->next;
size++;
}
return (size);
}