change printing
[lambda.git] / mem.h
1 #ifndef MEM_H
2 #define MEM_H
3
4 #include "lambda.h"
5
6 void lambda_free(struct lambda *);
7 struct lambda *copy(struct lambda *);
8 struct lambda *shallow_copy(struct lambda *);
9 #endif