summaryrefslogtreecommitdiff
path: root/fns.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <peter@pmikkelsen.com>2021-07-02 16:59:56 +0000
committerPeter Mikkelsen <peter@pmikkelsen.com>2021-07-02 16:59:56 +0000
commit2bfb79be604c68b7684b515f3be3388fecfcf1f4 (patch)
treefe786e8426d8ec8d22750f91140aa060c111081f /fns.h
parent855fd0a5eacdc52699e3e187fcde1a4895ca5f6a (diff)
Remove strings, and add a (currently not changable) flag 'double_quotes' which defines how double quoted strings are stored.
Diffstat (limited to 'fns.h')
-rw-r--r--fns.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/fns.h b/fns.h
index 4e3afd2..1a97b92 100644
--- a/fns.h
+++ b/fns.h
@@ -13,6 +13,7 @@ Term *mkvariable(Rune *);
Term *mkcompound(Rune *, int, Term *);
Term *mknumber(int, vlong, double);
Term *mkstring(Rune *);
+Term *mklist(Term *);
/* eval.c */
int evalquery(Term *, Term *, Binding **, Choicepoint **);
@@ -24,3 +25,6 @@ void repl(Term *);
/* builtins.c */
Builtin findbuiltin(Term *);
+
+/* flags.c */
+void initflags(void);