diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-17 12:49:45 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-17 14:02:12 +0200 |
commit | 76bc59f8548bb3388747cc1c54326fb7236dc1eb (patch) | |
tree | 5ebd41472c86f55cd17551a1906e5a4618d08a5a /minion/src/util.hpp | |
parent | 0529ac97653bc535c5c1db832d258f661d69309c (diff) |
refactor(minion): add quit function & improve in loop
Diffstat (limited to 'minion/src/util.hpp')
-rw-r--r-- | minion/src/util.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/minion/src/util.hpp b/minion/src/util.hpp index 4cc3967..0dbb03f 100644 --- a/minion/src/util.hpp +++ b/minion/src/util.hpp @@ -36,4 +36,6 @@ void substr(const char *str, const char *end, char *dest) noexcept; */ auto streq(const char *str_one, const char *str_two) noexcept -> bool; +void quit() noexcept; + } // namespace util |