aboutsummaryrefslogtreecommitdiff
path: root/src/lullaby.h
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2025-10-15 16:50:46 -0500
committeramelia squires <[email protected]>2025-10-15 16:50:46 -0500
commitb94f6d148193f91cab50d16e2873095827b89b1b (patch)
treef550bd912cdd4c5469cec1ac320cb9c874df3476 /src/lullaby.h
parent8c2893be56c10af0a696282386b49fdb3c1e4a81 (diff)
better errors and docs
Diffstat (limited to 'src/lullaby.h')
-rw-r--r--src/lullaby.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lullaby.h b/src/lullaby.h
new file mode 100644
index 0000000..9474a08
--- /dev/null
+++ b/src/lullaby.h
@@ -0,0 +1,13 @@
+#ifndef LULLABY_H
+#define LULLABY_H
+#pragma once
+#include "config.h"
+
+extern int _print_errors;
+
+static struct config lullaby_config[] = {
+ {.name = "print_errors", .type = c_int, .value = {.c_int = &_print_errors}},
+ {.type = c_none}
+};
+
+#endif