summary refs log tree commit diff
path: root/bin/hilex.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-13 16:04:52 -0500
committerJune McEnroe <june@causal.agency>2021-01-13 16:04:52 -0500
commit29b578e6cdede6d9777b8dcf20d09b4aec10ba6c (patch)
treec602b18e2af839d5acc4af227ad424f0192cfcc8 /bin/hilex.c
parentTry to return strings as single tokens (diff)
downloadsrc-29b578e6cdede6d9777b8dcf20d09b4aec10ba6c.tar.gz
src-29b578e6cdede6d9777b8dcf20d09b4aec10ba6c.zip
Move text "lexer" to hilex.c
Diffstat (limited to 'bin/hilex.c')
-rw-r--r--bin/hilex.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/hilex.c b/bin/hilex.c
index e91442f6..39025961 100644
--- a/bin/hilex.c
+++ b/bin/hilex.c
@@ -35,6 +35,14 @@ static const char *Class[] = {
 #undef X
 };
 
+static FILE *yyin;
+static char *yytext;
+static int yylex(void) {
+	static size_t cap = 0;
+	return (getline(&yytext, &cap, yyin) < 0 ? None : Normal);
+}
+static const struct Lexer LexText = { yylex, &yyin, &yytext };
+
 static const struct {
 	const struct Lexer *lexer;
 	const char *name;