-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstsize_bonus.c
29 lines (25 loc) · 1.07 KB
/
ft_lstsize_bonus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_lstsize_bonus.c :+: :+: */
/* +:+ */
/* By: jaberkro <[email protected]> +#+ */
/* +#+ */
/* Created: 2021/10/28 12:44:00 by jaberkro #+# #+# */
/* Updated: 2021/11/03 17:21:59 by jaberkro ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_lstsize(t_list *lst)
{
int counter;
counter = 0;
while (lst)
{
lst = lst->next;
counter++;
}
return (counter);
}
/* Counts the number of elements in a list.
*/