blob: 82f53d1238528229a626a3dfeb95aa7c7496988b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_front.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */
/* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
void
ft_lstadd_front(t_list **alst, t_list *new)
{
if (!alst || !new)
return ;
new->next = *alst;
*alst = new;
}
|