22 lines
1 KiB
C
22 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_lstlast.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/10/04 16:22:57 by mcolonna #+# #+# */
|
|
/* Updated: 2023/10/05 12:53:31 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
t_list *ft_lstlast(t_list *lst)
|
|
{
|
|
if (!lst)
|
|
return (NULL);
|
|
while (lst->next)
|
|
lst = lst->next;
|
|
return (lst);
|
|
}
|