From a3f3fc742daa4b28094b5ebe9be60263c41979d1 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Wed, 30 Oct 2019 15:00:17 +0100 Subject: New libft, feelsgoodman --- libft/src/ft_lstlast.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libft/src/ft_lstlast.c (limited to 'libft/src/ft_lstlast.c') diff --git a/libft/src/ft_lstlast.c b/libft/src/ft_lstlast.c new file mode 100644 index 0000000..a685322 --- /dev/null +++ b/libft/src/ft_lstlast.c @@ -0,0 +1,25 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_lstlast.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2019/10/13 09:53:13 by rbousset #+# ## ## #+# */ +/* Updated: 2019/10/13 10:11:09 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include "libft.h" +#include + +t_list + *ft_lstlast(t_list *lst) +{ + if (!lst) + return (NULL); + while (lst->next != NULL) + lst = lst->next; + return (lst); +} -- cgit v1.2.3