ft_lstaddend

This commit is contained in:
Tanguy MAZE
2018-04-19 14:41:21 +02:00
parent baf67e49a6
commit 5703ae8db7
9 changed files with 66 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 00:12:36 by tmaze #+# #+# */
/* Updated: 2018/04/10 19:08:03 by tmaze ### ########.fr */
/* Updated: 2018/04/19 14:25:55 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -125,5 +125,7 @@ size_t ft_lstsize(t_list *lst);
t_list *ft_lstgetat(t_list *lst, size_t ind);
t_list *ft_lstgetlast(t_list *lst);
void ft_sort_params(int ac, char **av);
void ft_print_words_tables(char **tab);
t_list *ft_lstaddend(t_list **alst, t_list *new);
#endif