/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* exec_semi.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/30 20:52:05 by jhalford #+# #+# */ /* Updated: 2016/12/12 18:00:21 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "exec.h" int exec_semi(t_btree **ast) { ft_exec(&(*ast)->left); ft_exec(&(*ast)->right); btree_delone(ast, &ast_free); return (0); }