vietdu91/42_libft

Pouet

Opened this issue ยท 0 comments

int ft_lstsize(t_list *lst)

#include <stddef.h>

int listsize(list_t * head) {
    if (head == NULL) {
        return 0;
    }
    return 1 + listsize(head->next);
}

๐Ÿ˜˜