summaryrefslogtreecommitdiff
path: root/fns.h
blob: 6878a24a8775d1cc32fa6d6f0f31fb0ead6b334f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* parser.c */
void 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);