ref: 8fde6e4845eeafe6ffc4179218a3ac9e8049c0e6
dir: /fns.h/
/* 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 *);