ft_lstadd_front: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-21 11:40:47 +02:00
parent 8777bfc3c3
commit a620c3606d
3 changed files with 47 additions and 2 deletions

View file

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