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