/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* interpreter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dkaiser type == PIPE_NODE) return (eval_pipe(&node->content.pipe)); else if (node->type == CMD_NODE) return (eval_cmd(&node->content.cmd)); else { panic(UNREACHABLE); return (-1); } } static int eval_pipe(t_pipe *pipe) { return (0); } static int eval_cmd(t_cmd *cmd) { return (0); }