diff options
Diffstat (limited to 'src/sig.h')
-rw-r--r-- | src/sig.h | 13 |
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 |