#pragma once #include const char* bool_str(bool input) { return input ? "True" : "False"; }