blob: aea1ba8e8620ea9b58995e442949c6c6302ab8be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* 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 **, Choicepoint **);
int unify(Term *, Term *, Binding **);
/* repl.c */
void repl(Term *);
/* builtins.c */
Builtin findbuiltin(Term *);
|