summaryrefslogtreecommitdiff
path: root/dat.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 /dat.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 'dat.h')
-rw-r--r--dat.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/dat.h b/dat.h
index ce6a0df..9dac8d0 100644
--- a/dat.h
+++ b/dat.h
@@ -45,7 +45,6 @@ struct Choicepoint
enum {
VariableTerm,
NumberTerm,
- StringTerm,
AtomTerm,
CompoundTerm,
};
@@ -56,4 +55,14 @@ enum {
};
int debug;
-Term *initgoals; \ No newline at end of file
+Term *initgoals;
+
+/* Flags */
+enum {
+ DoubleQuotesChars,
+ DoubleQuotesCodes,
+ DoubleQuotesAtom,
+};
+
+int flagdoublequotes;
+