/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* pfree_list.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: wescande +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/08 02:37:04 by wescande #+# #+# */ /* Updated: 2017/03/13 22:31:32 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int pfree_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); }