ref: a8b1fadd149126e9c8d3081a56d206812211f1e6
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); Term *mkstring(Rune *); /* eval.c */ int evalquery(Term *, Term *, Binding **); /* repl.c */ void repl(Term *); /* builtins.c */ Builtin findbuiltin(Term *);