blob: a685322c38c8ea97502089c5b9e3a0722bd26599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_lstlast.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/13 09:53:13 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 10:11:09 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
#include <stddef.h>
t_list
*ft_lstlast(t_list *lst)
{
if (!lst)
return (NULL);
while (lst->next != NULL)
lst = lst->next;
return (lst);
}
|