-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathft_lstadd_front.c
More file actions
21 lines (19 loc) · 1 KB
/
ft_lstadd_front.c
File metadata and controls
21 lines (19 loc) · 1 KB
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: ksmorozo <ksmorozo@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/24 13:49:10 by ksmorozo #+# #+# */
/* Updated: 2020/12/03 00:01:59 by anonymous ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_front(t_list **lst, t_list *new)
{
if (!new || !lst)
return ;
new->next = *lst;
*lst = new;
}