aboutsummaryrefslogtreecommitdiff
path: root/include/lexer.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-12 16:31:57 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-12 16:31:57 +0530
commit37c69bc9c889c2cee0a66336c3b7dec7194d982b (patch)
treee1509b3c4d2261e21e17ab514926bf497967130f /include/lexer.h
parentf02732e5ec00849b3150c9261e59aa6e78ba6bbc (diff)
lexer: find_next_key should be able to skip x keys
Diffstat (limited to 'include/lexer.h')
-rw-r--r--include/lexer.h2
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