shithub: pprolog

ref: 13efe91101a11f41caf6321a8b2fbdd96ef9927a
dir: pprolog/fns.h

View raw version
/* parser.c */
Term *parse(Biobuf *, Module *, VarName **);

/* prettyprint.c */
Rune *prettyprint(Term *, int, int, int, Module *);

/* misc.c */
Term *copyterm(Term *);
void renametermvars(Term *);
void renameclausevars(Clause *);
Term *appendterm(Term *, Term *);
int termslength(Term *);
Term *mkatom(Rune *);
Term *mkvariable(void);
Term *mkcompound(Rune *, int, Term *);
Term *mkfloat(double);
Term *mkinteger(vlong);
Term *mkstring(Rune *);
Term *mklist(Term *);
Clause *copyclause(Clause *, uvlong *);

/* eval.c */
int evalquery(Term *);
int unify(Term *, Term *, Binding **);
void applybinding(Term *, Binding *);
Goal *addgoals(Goal *, Term *, Module *, uvlong);
Predicate *findpredicate(Predicate *, Term *);
Clause *findclause(Clause *, Term *, Binding **);

/* builtins.c */
Builtin findbuiltin(Term *);

/* flags.c */
void initflags(void);
void setflag(Rune *, Term *);
Term *getallflags(void);

/* error.c */
Term *instantiationerror(void);
Term *typeerror(Rune *, Term *);
Term *domainerror(Rune *, Term *);
Term *existenceerror(Rune *, Term *);
Term *permissionerror(Rune *, Rune *, Term *);
Term *representationerror(Rune *);
Term *evaluationerror(Rune *);
Term *resourceerror(Rune *);
Term *syntaxerror(Rune *);

/* streams.c */
void initstreams(void);
int openstream(Rune *, Rune *, Term *, Term **);
void closestream(Term *);
Term *currentinputstream(void);
Term *currentoutputstream(void);
void setcurrentinputstream(Term *);
void setcurrentoutputstream(Term *);
int isopenstream(Term *);
int isinputstream(Term *);
int isoutputstream(Term *);
int istextstream(Term *);
int isbinarystream(Term *);
int canreposition(Term *);
int readterm(Term *, Term **, Module *, VarName **);
void writeterm(Term *, Term *, Term *, Module *);
Rune getchar(Term *);
Rune peekchar(Term *);
void putchar(Term *, Rune);
void flushstream(Term *);
Term *streamsproperties(void);
void reposition(Term *, vlong);

/* module.c */
void initmodules(void);
int addtousermod(char *);
Module *getmodule(Rune *);
Module *addemptymodule(Rune *);
void removemodule(Rune *);
Clause *appendclause(Clause *, Clause *);
Predicate *appendpredicate(Predicate *, Predicate *);
Operator *getoperator(Rune *, Module *);
void addoperator(int, int, Rune *, Module *);

/* types.c */
int islist(Term *);
int ispartiallist(Term *t);
int isemptylist(Term *);
int isnonemptylist(Term *);
int ispredicateindicator(Term *, int);
Term *listhead(Term *);
Term *listtail(Term *);

/* arithmetic.c */
Term *aritheval(Term *, int *);

/* garbage.c */
void *gmalloc(ulong);
vlong collectgarbage(void);