why doesn't i work today

This commit is contained in:
2024-11-12 21:31:33 +01:00
parent 3196f285fd
commit 2d35ee060c
7 changed files with 133 additions and 115 deletions
+8
View File
@@ -31,4 +31,12 @@ void safe_exit(int code) {
}
exit(code);
}
std::string bool_to_string(bool bool_in) {
if (bool_in) {
return "true";
} else {
return "false";
}
}