-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_lstadd_back.c
23 lines (21 loc) · 1.03 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstadd_back.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ide-spir <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/11 14:08:27 by ide-spir #+# #+# */
/* Updated: 2022/01/11 14:10:02 by ide-spir ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_lstadd_back(t_list **lst, t_list *new)
{
if (!lst || !new)
return ;
if (*lst)
ft_lstlast(*lst)->next = new;
else
*lst = new;
}