-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstadd.c
executable file
·22 lines (19 loc) · 1023 Bytes
/
ft_lstadd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ioleksiu <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/27 15:16:28 by ioleksiu #+# #+# */
/* Updated: 2016/12/29 12:06:54 by ioleksiu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd(t_list **alst, t_list *new)
{
t_list *list;
list = *alst;
*alst = new;
new->next = list;
}