1 2 3 4
#pragma once #include <stdbool.h> const char* bool_str(bool input) { return input ? "True" : "False"; }