MACRO
OMNI_BOOL2STR - Convert a bool value to a string.
SYNOPSIS top
A simple helper macro that can take boolean types and convert them to a
A simple helper macro that can take boolean types and convert them to a
"true" or "false" value.
DESCRIPTION top
This macro is simple defined as the following:
This macro is simple defined as the following:
#define OMNI_BOOL2STR(b) (b ? "true" : "false")