-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstadd_back.c
26 lines (23 loc) · 1.04 KB
/
ft_lstadd_back.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_back.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bregneau <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/30 17:12:57 by bregneau #+# #+# */
/* Updated: 2021/12/02 19:51:49 by bregneau ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_back(t_list **alst, t_list *new)
{
t_list *list;
if (*alst)
{
list = ft_lstlast(*alst);
list->next = new;
}
else
*alst = new;
}