/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_lstsize.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/13 09:45:10 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 09:51:16 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include int ft_lstsize(t_list *lst) { int i; if (!lst) return (0); i = 0; while (lst != NULL) { lst = lst->next; i++; } return (i); }