aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-08-09 12:12:09 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-08-09 12:12:09 +0530
commit66c403c79e64dbe96fc080ff74e87db2102f93f3 (patch)
treeca0826621ab7331683d3deb08a8efdd806df3225 /include
parentb386e28f799e9740a60a924444d05a16dad64a4c (diff)
engine: add docstring for engine_t
Diffstat (limited to 'include')
-rw-r--r--include/engine.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/engine.h b/include/engine.h
index 137f201..21a683c 100644
--- a/include/engine.h
+++ b/include/engine.h
@@ -23,6 +23,12 @@
#include <lexer.h>
#include <list.h>
+/*
+ * Simply just there to return content headers and config.
+ *
+ * content_headers: List of contentfor operands (CONTENTFOR directive operands)
+ * config: Config of the ingested file
+ */
typedef struct {
list_t *content_headers;
config_t *config;