aboutsummaryrefslogtreecommitdiff
path: root/include/msg.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-07-31 11:52:42 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-07-31 11:52:42 +0530
commitfa380e1c35f403e2530bd6ffebe3a4881080a391 (patch)
treee2e7b163d2c7c9283e28c3c0ded053b3ea0fb27e /include/msg.h
parent9aea7ab4daf9097225f46788fb87125c0b51076e (diff)
msg: add option to increase verbosity
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);