blob: 701d40e7433cc2c0e0b9e5a66d0a2656274a2272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include "ast.h"
#include <err.h>
#include <stdlib.h>
struct ast *ast_new(enum ast_type type)
{
struct ast *new = calloc(1, sizeof(struct ast));
if (!new)
return NULL;
new->type = type;
return new;
}
void ast_free(struct ast *ast)
{
if (ast == NULL)
return;
ast_free(ast->left);
ast->left = NULL;
ast_free(ast->right);
ast->right = NULL;
free(ast);
}
|