-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstadd_back.c
24 lines (22 loc) · 1.08 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_back.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tedison <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/04 11:18:37 by tedison #+# #+# */
/* Updated: 2021/04/07 18:35:34 by tedison ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_back(t_list **alst, t_list *new)
{
if (!alst || !new)
return ;
if (*alst == NULL)
*alst = new;
else
ft_lstlast(*alst)->next = new;
ft_lstlast(*alst)->next = NULL;
}