aboutsummaryrefslogtreecommitdiff
path: root/ft_lstadd_front.c
blob: 4b1be2aa148bf04f005330a5f86fc856ce4032b0 (plain)
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;
}