diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-10 21:51:58 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-10 21:51:58 +0530 |
commit | 4cfa655dc608a87ec657f29952be8b4cca57f2bf (patch) | |
tree | cc020b81032cbf69475ae294a5269db9e628bb5a /include/lexer.h | |
parent | 15305a850eb96a08c90b5a9d415f0439a96bc4ec (diff) |
lexer: lex_file->lex
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lexer.h b/include/lexer.h index ce761dd..f5ab375 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -28,7 +28,7 @@ typedef struct { unsigned int length; } contentfor_operand_t; -list_t *lex_file(char *buffer); +list_t *lex(char *buffer); directive_t *find_directive(char *content, key_match_t *match); key_match_t *find_next_key(char *buffer); |