diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2025-04-08 09:53:29 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2025-04-08 09:53:29 +0100 |
commit | 2ebbe89ddf64a1cdaea65b4d49ffe668c6577e00 (patch) | |
tree | 45f0b0d95d8959c951fe614ccb81e35e33291a95 /opts.h | |
parent | 39b1d95bcdb6f6dfe17186a05798084234d0cc24 (diff) |
Diffstat (limited to 'opts.h')
-rw-r--r-- | opts.h | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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; |