diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-30 20:24:32 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-30 20:24:32 +0100 |
| commit | 6500b1ca9ce911d3db7c94ee3f4ee38489b8861a (patch) | |
| tree | 4d2766b1bea4322a6e5851f53af33178d9643a5c /src/lst/ft_lstreverse_ret.c | |
| parent | aa244ec3fb071a7fd08494d04cc865b281502804 (diff) | |
| download | libft-6500b1ca9ce911d3db7c94ee3f4ee38489b8861a.tar.gz libft-6500b1ca9ce911d3db7c94ee3f4ee38489b8861a.tar.bz2 libft-6500b1ca9ce911d3db7c94ee3f4ee38489b8861a.zip | |
Renaming t_list -> t_ftlst, changing feature adding by header
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); |
