aboutsummaryrefslogtreecommitdiff
path: root/include/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/engine.h')
-rw-r--r--include/engine.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/engine.h b/include/engine.h
index ab08e7a..5da3332 100644
--- a/include/engine.h
+++ b/include/engine.h
@@ -22,6 +22,7 @@
#include <config.h>
#include <lexer.h>
#include <list.h>
+#include <stdbool.h>
/*
* Simply just there to return content headers and config.
@@ -42,7 +43,7 @@ typedef struct {
int priority;
} atom_t;
-engine_t *engine_ingest(char **buffer);
+engine_t *engine_ingest(char **buffer, bool is_template);
void engine_delete(engine_t *engine);
void handle_include(char **buffer, key_match_t *match, directive_t *directive);