aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_lstadd_front.c
blob: e6894126bb6ee2352af5e609c14a862c968e010b (plain)
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;
}