diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-09 19:48:06 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-09 19:48:06 +0530 |
commit | b365f7cdd0882c1fe974e9e08d607341876a0d34 (patch) | |
tree | ca44b484fd020bc48a8b77da93b7c328a94b00fb /include/lexer.h | |
parent | b71c27f403d82d5ab1db971887b9bdeae408cd5d (diff) |
(lexer): implement find_all_keys
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lexer.h b/include/lexer.h index ca2b351..17a2825 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -19,6 +19,7 @@ typedef struct { unsigned int length; } contentfor_operand_t; +list_t *parse_file(char *content); directive_t *find_directive(char *content, key_match_t *match); key_match_t *find_next_key(char *buffer); |