Skip to content
ast_or.c 632 B
Newer Older
Seblu's avatar
Seblu committed
/*
** ast_or.c for 42sh
**
** Made by Seblu
** Login   <seblu@epita.fr>
**
** Started on  Thu Aug  3 02:41:37 2006 Seblu
** Last update Fri Aug 25 03:46:27 2006 Seblu
Seblu's avatar
Seblu committed
*/

#include "ast.h"

ts_ast_node	*ast_or_create(ts_ast_node *lhs, ts_ast_node *rhs)
Seblu's avatar
Seblu committed
{
  ts_ast_node	*node;

  secmalloc(node, sizeof (ts_ast_node));
  node->type = T_OR;
  node->body.child_or.lhs = lhs;
  node->body.child_or.rhs = rhs;
  return node;
}

void		ast_or_destruct(ts_ast_node *node)
Seblu's avatar
Seblu committed
{
  if (node->type != T_OR) {
    ast_destruct(node);
    return;
  }
  ast_destruct(node->body.child_or.lhs);
  ast_destruct(node->body.child_or.rhs);
  free(node);
}