-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstadd_back.c
24 lines (21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_back.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hcastanh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/13 09:03:34 by hcastanh #+# #+# */
/* Updated: 2020/05/13 09:24:26 by hcastanh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_back(t_list **lst, t_list *new)
{
t_list *tail;
tail = ft_lstlast(*lst);
if (tail != NULL)
tail->next = new;
else
*lst = new;
}