diff options
Diffstat (limited to 'src/lst/ft_lstreverse_ret.c')
| -rw-r--r-- | src/lst/ft_lstreverse_ret.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lst/ft_lstreverse_ret.c b/src/lst/ft_lstreverse_ret.c index 3e2118f..a3edb99 100644 --- a/src/lst/ft_lstreverse_ret.c +++ b/src/lst/ft_lstreverse_ret.c @@ -11,10 +11,11 @@ /* ************************************************************************** */ #include "libft.h" +#include "libft_lst.h" -t_list *ft_lstreverse_ret(t_list *lst) +t_ftlst *ft_lstreverse_ret(t_ftlst *lst) { - t_list *tmp; + t_ftlst *tmp; if (lst == NULL) return (NULL); |
