From 840957aee277e7c426647cc133b2a41e7cecd9a9 Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Wed, 9 Oct 2019 09:12:43 +0200 Subject: Normed, Makefile bonus rule - bonus rule to add the *_bonus files to libft.a - normed memmove, calloc and bonus --- ft_lstlast.c | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 ft_lstlast.c (limited to 'ft_lstlast.c') diff --git a/ft_lstlast.c b/ft_lstlast.c deleted file mode 100644 index 7442937..0000000 --- a/ft_lstlast.c +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include "libft.h" - -t_list *ft_lstlast(t_list *lst) -{ - if (lst == NULL) - return (NULL); - while (lst->next != NULL) - lst = lst->next; - return (lst); -} -- cgit