-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_dlstadd_front.c
22 lines (19 loc) · 1.08 KB
/
ft_dlstadd_front.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_dlstadd_front.c :+: :+: */
/* +:+ */
/* By: jaberkro <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/02/24 12:29:09 by jaberkro #+# #+# */
/* Updated: 2022/04/14 12:25:40 by jaberkro ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_dlstadd_front(t_dlist **dlst, t_dlist *new)
{
new->next = *dlst;
(*dlst)->previous = new;
*dlst = new;
}
/* Adds the element ’new’ at the beginning of the doubly linked list. */