diff options
| author | Cabergs Charles <cacharle@w-r5-p6.s19.be> | 2019-10-09 09:12:43 +0200 |
|---|---|---|
| committer | Cabergs Charles <cacharle@w-r5-p6.s19.be> | 2019-10-09 09:12:43 +0200 |
| commit | 840957aee277e7c426647cc133b2a41e7cecd9a9 (patch) | |
| tree | 96eaae76f3586e9fa141cd94b95e92b7a6db3d09 /ft_lstadd_back.c | |
| parent | f723389e5143c9ee0bc3d9774bb523b1c752b74c (diff) | |
| download | libft-840957aee277e7c426647cc133b2a41e7cecd9a9.tar.gz libft-840957aee277e7c426647cc133b2a41e7cecd9a9.tar.bz2 libft-840957aee277e7c426647cc133b2a41e7cecd9a9.zip | |
Normed, Makefile bonus rule
- bonus rule to add the *_bonus files to libft.a
- normed memmove, calloc and bonus
Diffstat (limited to 'ft_lstadd_back.c')
| -rw-r--r-- | ft_lstadd_back.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ft_lstadd_back.c b/ft_lstadd_back.c deleted file mode 100644 index e2cbf2a..0000000 --- a/ft_lstadd_back.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <stdlib.h> -#include "libft.h" - -void ft_lstadd_back(t_list **alst, t_list *new) -{ - t_list *cursor; - - if (*alst == NULL) - { - *alst = new; - return ; - } - cursor = *alst; - while (cursor->next != NULL) - cursor = cursor->next; - cursor->next = new; -} |
