Skip to content
ast_destruct.c 276 B
Newer Older
Seblu's avatar
Seblu committed
/*
** ast_destruct.c for 42sh
**
** Made by Seblu
** Login   <seblu@epita.fr>
**
** Started on  Sat Mar 25 23:11:01 2006 Seblu
** Last update Thu Aug  3 07:00:17 2006 Seblu
*/

#include "ast.h"

void	ast_destruct(ts_ast_node *ast)
{
  if (ast == NULL)
    return;
  //fixme
}