/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* set_process_if.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: wescande +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/07 19:19:50 by wescande #+# #+# */ /* Updated: 2017/03/08 14:59:17 by wescande ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int set_process_if(t_process *p, t_btree *ast) { p->data.d_if.condition = btree_map(ast->left, &node_copy); p->data.d_if.content = btree_map(ast->right, &node_copy); p->type = PROCESS_IF; return (0); }