/* ** ast_pipe.c for 42sh ** ** Made by Seblu ** Login ** ** Started on Thu Aug 3 02:41:37 2006 Seblu ** Last update Thu Aug 3 03:03:31 2006 Seblu */ #include "../common/mem.h" #include "ast.h" ts_ast_node *ast_create_pipe(ts_ast_node *lhs, ts_ast_node *rhs) { ts_ast_node *node; secmalloc(node, sizeof (ts_ast_node)); node->type = T_PIPE; node->body.child_pipe.lhs = lhs; node->body.child_pipe.rhs = rhs; return node; } void ast_destruct_pipe(ts_ast_node *node) { if (node->type != T_PIPE) { ast_destruct(node); return; } ast_destruct(node->body.child_pipe.lhs); ast_destruct(node->body.child_pipe.rhs); free(node); }