ft_lstsize: norm error fixed

This commit is contained in:
Khaïs COLIN 2024-10-21 12:16:09 +02:00
parent a872beadb9
commit d9097ecd53

View file

@ -12,7 +12,7 @@
#include "libft.h" #include "libft.h"
int ft_lstsize(t_list *lst) int ft_lstsize(t_list *lst)
{ {
t_list *current; t_list *current;
int count; int count;