diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-11 11:00:24 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-11 11:00:24 +0530 |
commit | bed4dae042b2e2836338212905df9ee028a37260 (patch) | |
tree | 2bc7744dd5aa25f0225f4a3a1675c681b2126ea8 /include/engine.h | |
parent | c8d48db2011e61409bb6b56910b70d6bce3a72f6 (diff) |
engine: ingest must return a list of content headers
Diffstat (limited to 'include/engine.h')
-rw-r--r-- | include/engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/engine.h b/include/engine.h index 885a2b2..d65c771 100644 --- a/include/engine.h +++ b/include/engine.h @@ -4,7 +4,7 @@ #include <lexer.h> #include <list.h> -void ingest(char **buffer); +list_t *ingest(char **buffer); void handle_include(char **buffer, key_match_t *match, directive_t *directive); void handle_contentfor(char **buffer, key_match_t *match, |