1 2 3 4 5 6 7 8
#include "libft.h" void ft_lstadd_front (t_list **lst, t_list *new) { new->next = *lst; *lst = new; }