diff options
author | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-02 16:59:56 +0000 |
---|---|---|
committer | Peter Mikkelsen <peter@pmikkelsen.com> | 2021-07-02 16:59:56 +0000 |
commit | 2bfb79be604c68b7684b515f3be3388fecfcf1f4 (patch) | |
tree | fe786e8426d8ec8d22750f91140aa060c111081f /fns.h | |
parent | 855fd0a5eacdc52699e3e187fcde1a4895ca5f6a (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.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |