summaryrefslogtreecommitdiff
path: root/fns.h
blob: b8e92ca8fab5b57bbbf6f14051fec39a5c5fa9c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* parser.c */
Term *parse(int, int);

/* prettyprint.c */
Rune *prettyprint(Term *);

/* misc.c */
Term *copyterm(Term *, uvlong *);
Term *appendterm(Term *, Term *);
int termslength(Term *);
Term *mkatom(Rune *);
Term *mkvariable(Rune *);
Term *mkcompound(Rune *, int, Term *);
Term *mknumber(int, vlong, double);

/* eval.c */
int evalquery(Term *, Term *, Binding **);

/* repl.c */
void repl(Term *);