diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-12 16:31:57 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-12 16:31:57 +0530 |
commit | 37c69bc9c889c2cee0a66336c3b7dec7194d982b (patch) | |
tree | e1509b3c4d2261e21e17ab514926bf497967130f /include/lexer.h | |
parent | f02732e5ec00849b3150c9261e59aa6e78ba6bbc (diff) |
lexer: find_next_key should be able to skip x keys
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 ef99187..d93877e 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -30,7 +30,7 @@ typedef struct { list_t *lex(char *buffer); directive_t *find_directive(char *content, key_match_t *match); -key_match_t *find_next_key(char *buffer); +key_match_t *find_next_key(char *buffer, size_t skip); char *find_contentfor_value(list_t *content_headers, char *key); #endif |