summaryrefslogtreecommitdiff
path: root/fns.h
blob: 81a2f08e48c96cada77657c5048c86ae77ba3d6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* parser.c */
Term *parse(int);

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

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