summaryrefslogtreecommitdiff
path: root/src/sig.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2024-07-13 12:51:05 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2024-07-13 12:51:05 +0200
commit591232eba1809643df1f4a6075ff9581b8bb2f7a (patch)
tree92e2c464158d03ef9c83f153ba5b88c39581d9f8 /src/sig.h
parent95283d70eee749d984b2ca07c0b61d39f9bb350d (diff)
move headers to src
Signed-off-by: Lizzy Fleckenstein <lizzy@vlhl.dev>
Diffstat (limited to 'src/sig.h')
-rw-r--r--src/sig.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/sig.h b/src/sig.h
new file mode 100644
index 0000000..c7e1e42
--- /dev/null
+++ b/src/sig.h
@@ -0,0 +1,13 @@
+// SPDX-FileCopyrightText: 2024 Lizzy Fleckenstein <lizzy@vlhl.dev>
+//
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
+#ifndef SIG_H
+#define SIG_H
+
+#include <stdbool.h>
+
+extern bool signal_stop;
+void signal_setup();
+
+#endif