libft/ft_lstgetlast.c
2018-04-09 17:47:59 +02:00

19 lines
1000 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstgetlast.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/09 17:34:10 by tmaze #+# #+# */
/* Updated: 2018/04/09 17:39:37 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_list *ft_lstgetlast(t_list *lst)
{
return (ft_lstgetat(lst, ft_lstsize(lst) - 1));
}