aboutsummaryrefslogtreecommitdiff
path: root/eval.h
blob: 25a2f33de89f828de437259be0973639147aa57c (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef EVAL_H
#define EVAL_H

struct atom;
struct env;

struct atom *eval(struct atom *expr, struct env *env);
struct atom *eval_str(const char *expr, struct env *env);

#endif