summaryrefslogtreecommitdiff
path: root/opts.h
diff options
context:
space:
mode:
authorthing1 <thing1@seacrossedlovers.xyz>2025-04-08 09:53:29 +0100
committerthing1 <thing1@seacrossedlovers.xyz>2025-04-08 09:53:29 +0100
commit2ebbe89ddf64a1cdaea65b4d49ffe668c6577e00 (patch)
tree45f0b0d95d8959c951fe614ccb81e35e33291a95 /opts.h
parent39b1d95bcdb6f6dfe17186a05798084234d0cc24 (diff)
made some additions that allow for better outputing of dataHEADmaster
Diffstat (limited to 'opts.h')
-rw-r--r--opts.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/opts.h b/opts.h
new file mode 100644
index 0000000..76bed31
--- /dev/null
+++ b/opts.h
@@ -0,0 +1,19 @@
+typedef enum mode {
+ NONE = 0,
+ LIST = 1,
+ CHECK = 2,
+ OUTPUT = 4,
+ PRETTY = 8,
+} mode;
+
+typedef enum outputformats {
+ GOATNOTE,
+ HTML,
+ GROFF,
+ TEXT,
+} outputformats;
+
+extern outputformats outputformat;
+extern mode m;
+extern token tokens[1024];
+extern int tokcount;