-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_lstlast_bonus.c
23 lines (19 loc) · 1.23 KB
/
ft_lstlast_bonus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstlast_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dolvin17 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/03 18:51:36 by ghuertas #+# #+# */
/* Updated: 2022/04/20 21:41:46 by dolvin17 ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/* devuelve el último elemento de la lista */
t_list *ft_lstlast(t_list *lst)
{
while (lst != NULL && lst->next != NULL) //mientras exista un nodo, y su referencia del siguiente sea distinto de NULL.
lst = lst->next; //recorro los nodos hasta llegar al último que cumpla con esta condicion.
return (lst); //retorno el último nodo.
}