/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* process_free_list.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: wescande +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/08 02:37:04 by wescande #+# #+# */ /* Updated: 2017/03/08 02:37:52 by wescande ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int process_free_list(t_process *p) { ft_ld_del(&p->data.d_for.list_word, &ft_tabdel); btree_del(&p->data.d_for.content, &ast_free); return (0); }