aboutsummaryrefslogtreecommitdiff
path: root/src/lst/ft_lstreverse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lst/ft_lstreverse.c')
-rw-r--r--src/lst/ft_lstreverse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lst/ft_lstreverse.c b/src/lst/ft_lstreverse.c
index c45a912..3d3fc7b 100644
--- a/src/lst/ft_lstreverse.c
+++ b/src/lst/ft_lstreverse.c
@@ -11,8 +11,9 @@
/* ************************************************************************** */
#include "libft.h"
+#include "libft_lst.h"
-void ft_lstreverse(t_list **lst)
+void ft_lstreverse(t_ftlst **lst)
{
*lst = ft_lstreverse_ret(*lst);
}