-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstadd_front.c
21 lines (19 loc) · 1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_front.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bmaaqoul <bmaaqoul@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/25 16:07:53 by bmaaqoul #+# #+# */
/* Updated: 2021/12/29 14:04:12 by bmaaqoul ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_front(t_list **lst, t_list *new)
{
t_list *temp;
temp = *lst;
new->next = temp;
*lst = new;
}