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_lstdelone.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_lstdelone.c')
| -rw-r--r-- | src/lst/ft_lstdelone.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lst/ft_lstdelone.c b/src/lst/ft_lstdelone.c index 30cec69..63dcc35 100644 --- a/src/lst/ft_lstdelone.c +++ b/src/lst/ft_lstdelone.c @@ -11,8 +11,9 @@ /* ************************************************************************** */ #include "libft.h" +#include "libft_lst.h" -void ft_lstdelone(t_list *lst, void (*del)(void *)) +void ft_lstdelone(t_ftlst *lst, void (*del)(void *)) { if (lst == NULL) return ; |
