aboutsummaryrefslogtreecommitdiff
path: root/src/lst/ft_lstlast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lst/ft_lstlast.c')
-rw-r--r--src/lst/ft_lstlast.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lst/ft_lstlast.c b/src/lst/ft_lstlast.c
index 247f4da..728cbf2 100644
--- a/src/lst/ft_lstlast.c
+++ b/src/lst/ft_lstlast.c
@@ -11,8 +11,9 @@
/* ************************************************************************** */
#include "libft.h"
+#include "libft_lst.h"
-t_list *ft_lstlast(t_list *lst)
+t_ftlst *ft_lstlast(t_ftlst *lst)
{
if (lst == NULL)
return (NULL);