summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_lstadd_back.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_lstadd_back.c')
-rw-r--r--libft/src/ft_lstadd_back.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/libft/src/ft_lstadd_back.c b/libft/src/ft_lstadd_back.c
new file mode 100644
index 0000000..58b3a72
--- /dev/null
+++ b/libft/src/ft_lstadd_back.c
@@ -0,0 +1,31 @@
+/* ************************************************************************** */
+/* LE - / */
+/* / */
+/* ft_lstadd_back.c .:: .:/ . .:: */
+/* +:+:+ +: +: +:+:+ */
+/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
+/* #+# #+ #+ #+# */
+/* Created: 2019/10/13 10:04:16 by rbousset #+# ## ## #+# */
+/* Updated: 2019/10/13 10:11:08 by rbousset ### #+. /#+ ###.fr */
+/* / */
+/* / */
+/* ************************************************************************** */
+
+#include "libft.h"
+#include <stddef.h>
+
+void
+ ft_lstadd_back(t_list **alst, t_list *new)
+{
+ t_list *tmp;
+
+ if (!alst || !new)
+ return ;
+ if (!*alst)
+ *alst = new;
+ else
+ {
+ tmp = ft_lstlast(*alst);
+ tmp->next = new;
+ }
+}