piscine/c12/ex02/ft_list_size.c
Willem Haffmans 607ce08c18 all
2024-09-10 00:18:01 +02:00

29 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_list_size.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/03 14:01:33 by whaffman #+# #+# */
/* Updated: 2024/07/03 14:49:28 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_list.h"
int ft_list_size(t_list *begin_list)
{
int count;
count = 1;
if (!begin_list)
return (0);
while (begin_list->next)
{
begin_list = begin_list->next;
count++;
}
return (count);
}