diff options
Diffstat (limited to 'archive/src/std/utils.h')
-rw-r--r-- | archive/src/std/utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archive/src/std/utils.h b/archive/src/std/utils.h new file mode 100644 index 0000000..c9827a3 --- /dev/null +++ b/archive/src/std/utils.h @@ -0,0 +1,4 @@ +#pragma once +#include <stdbool.h> + +const char* bool_str(bool input) { return input ? "True" : "False"; }
\ No newline at end of file |