-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_lstlast.c
More file actions
22 lines (20 loc) · 1.01 KB
/
ft_lstlast.c
File metadata and controls
22 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_lstlast.c :+: :+: */
/* +:+ */
/* By: ivork <ivork@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/10 21:11:53 by ivork #+# #+# */
/* Updated: 2021/05/21 16:25:20 by ivork ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstlast(t_list *lst)
{
if (!lst)
return (0);
while (lst->next != NULL)
lst = lst->next;
return (lst);
}