ft_lstsize: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-21 11:50:55 +02:00
parent a620c3606d
commit 7acdc05a62
3 changed files with 58 additions and 2 deletions

View file

@ -71,5 +71,6 @@ typedef struct s_list
t_list *ft_lstnew(void *content);
void ft_lstadd_front(t_list **lst, t_list *new);
int ft_lstsize(t_list *lst);
#endif