aboutsummaryrefslogtreecommitdiff
path: root/include/msg.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/msg.h')
-rw-r--r--include/msg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/msg.h b/include/msg.h
index f15d9c9..4f44bf0 100644
--- a/include/msg.h
+++ b/include/msg.h
@@ -19,6 +19,8 @@
#ifndef __MSG_H
#define __MSG_H
+#include <stdbool.h>
+
#define PARTIALS "partials"
#define TEMPLATES "templates"
#define BASE_TEMPLATE "base.html"
@@ -27,6 +29,7 @@
typedef struct {
char *base_directory;
char *output_directory;
+ bool verbose;
} msg_t;
int run(void);