aboutsummaryrefslogtreecommitdiff
path: root/include/lexer.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-29 08:33:49 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-29 08:33:49 +0530
commit1116df37a0e8919c1ba9bbf66aeda249367f0748 (patch)
tree9730ab9b163426a2f5a8d694b32fd5a365172fa7 /include/lexer.h
parentac975c3ed46e7796a705f67279b6bee4b94edd96 (diff)
lexer: add length to eachdo_operands_t
Diffstat (limited to 'include/lexer.h')
-rw-r--r--include/lexer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lexer.h b/include/lexer.h
index d62b0d3..0da45ff 100644
--- a/include/lexer.h
+++ b/include/lexer.h
@@ -37,6 +37,7 @@ typedef struct {
typedef struct {
char *key;
char *content;
+ size_t length;
} eachdo_operands_t;
list_t *lex(char *buffer);