#ifndef BUILTINS_H_ #define BUILTINS_H_ #include "expr.h" bool equal(struct Expr obj1, struct Expr obj2); bool nil_p(struct Expr obj); bool symbol_p(struct Expr obj); bool cons_p(struct Expr obj); struct Expr assoc(struct Expr key, struct Expr alist); struct Expr list(Gc *gc, size_t n, ...); #endif // BUILTINS_H_