diff options
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/lexer.h b/include/lexer.h index 448d302..b9dbf1c 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -26,6 +26,7 @@ typedef struct { void *operands; } directive_t; +/* TODO: strlen(content) instead of length? */ typedef struct { char *key; char *content; @@ -56,5 +57,9 @@ void lexer_handle_content(directive_t *directive, key_match_t *match, char *buffer, size_t n); +void lexer_handle_for(directive_t *directive, + key_match_t *match, + char *buffer, + size_t n); #endif |