/* ** ast_destruct.c for 42sh ** ** Made by Seblu ** Login ** ** 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 }