Skip to content
ast_bang.c 559 B
Newer Older
Seblu's avatar
Seblu committed
/*
** ast_bang.c for 42sh
**
** Made by Seblu
** Login   <seblu@epita.fr>
**
** Started on  Thu Aug  3 02:41:37 2006 Seblu
Seblu's avatar
Seblu committed
** Last update Mon Aug 28 23:57:20 2006 Seblu
Seblu's avatar
Seblu committed
*/

#include "ast.h"

Seblu's avatar
Seblu committed
s_ast_node	*ast_bang_create(s_ast_node *child)
Seblu's avatar
Seblu committed
{
Seblu's avatar
Seblu committed
  s_ast_node	*node;
Seblu's avatar
Seblu committed

Seblu's avatar
Seblu committed
  secmalloc(node, sizeof (s_ast_node));
Seblu's avatar
Seblu committed
  node->type = T_BANG;
  node->body.child_bang.lhs = child;
  node->body.child_bang.rhs = NULL;
  return node;
}

Seblu's avatar
Seblu committed
void		ast_bang_destruct(s_ast_node *node)
Seblu's avatar
Seblu committed
{
Seblu's avatar
Seblu committed
  if (node->type != T_BANG)
Seblu's avatar
Seblu committed
    return;
  ast_destruct(node->body.child_bang.lhs);
  free(node);
}