-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstadd_front.c
26 lines (22 loc) · 1.09 KB
/
ft_lstadd_front.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_front.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: xle-boul <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/05 23:35:53 by xle-boul #+# #+# */
/* Updated: 2021/10/19 13:50:58 by xle-boul ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* adds an element to the beginning of the list */
void ft_lstadd_front(t_list **lst, t_list *new)
{
t_list *temp;
if (!lst && !new)
return ;
temp = (*lst);
(*lst) = new;
new->next = temp;
}