Skip to content
ast_funcdec.c 669 B
Newer Older
Seblu's avatar
Seblu committed
/*
** ast_funcdec.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:54 2006 Seblu
Seblu's avatar
Seblu committed
*/

#include "ast.h"

ts_ast_node	*ast_funcdec_create(char *name, ts_ast_node *body)
Seblu's avatar
Seblu committed
{
  ts_ast_node	*node;

  secmalloc(node, sizeof (ts_ast_node));
  node->type = T_FUNCDEC;
  node->body.child_funcdec.name = name;
  node->body.child_funcdec.body = body;
  return node;
}

void		ast_funcdec_destruct(ts_ast_node *node)
Seblu's avatar
Seblu committed
{
  if (node->type != T_FUNCDEC) {
    ast_destruct(node);
    return;
  }
  free(node->body.child_funcdec.name);
  ast_destruct(node->body.child_funcdec.body);
  free(node);
}