blob: f288653178dd3ef5e489ced5839a9ce3660b7478 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#include <term.h>
#include <stdlib.h>
#include <stdio.h>
struct term *new_term(term_type type)
{
struct term *term = calloc(1, sizeof(*term));
if (!term) {
fprintf(stderr, "Out of memory!\n");
abort();
}
term->type = type;
return term;
}
void free_term(struct term *term)
{
switch (term->type) {
case ABS:
free_term(term->u.abs.term);
free(term);
break;
case APP:
free_term(term->u.app.lhs);
free_term(term->u.app.rhs);
free(term);
break;
case VAR:
free(term);
break;
default:
fprintf(stderr, "Invalid type %d\n", term->type);
}
}
void print_term(struct term *term)
{
switch (term->type) {
case ABS:
printf("[");
print_term(term->u.abs.term);
printf("]");
break;
case APP:
printf("(");
print_term(term->u.app.lhs);
printf(" ");
print_term(term->u.app.rhs);
printf(")");
break;
case VAR:
printf("%d", term->u.var);
break;
default:
fprintf(stderr, "Invalid type %d\n", term->type);
}
}
|