summaryrefslogtreecommitdiff
path: root/lex.h
diff options
context:
space:
mode:
authorÁkos Kőrösi <korakos99@gmail.com>2026-05-12 10:09:02 +0200
committerÁkos Kőrösi <korakos99@gmail.com>2026-05-12 10:09:02 +0200
commitf0016d8946958d029706b39ecd233044d3cf93f5 (patch)
tree963723ca26978870fe1dd9d1cdb6bcdc5b0c6d9d /lex.h
parent1d086299904873c9123ad3449b991eb301d8be05 (diff)
build lexing mostly
- outline the whole of lexing (maybe) - split it to separate C file - add standin code to main
Diffstat (limited to 'lex.h')
-rw-r--r--lex.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lex.h b/lex.h
index b777d95..b27c03e 100644
--- a/lex.h
+++ b/lex.h
@@ -1,3 +1,6 @@
+#ifndef LEX_H
+#define LEX_H
+
#include "typeutils.h"
@@ -72,3 +75,5 @@ struct ExpansionRegion {
DECLARE_MAYBE(Chunk);
DECLARE_VEC(ExpansionRegion, ExpansionRegionVec)
+
+#endif