OMNI_BOOL2STR
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 "true" or "false" value.

DESCRIPTION top

This macro is simply defined as the following:
#define OMNI_BOOL2STR(b) (b ? "true" : "false")

CONSIDERATIONS top

No special consideration.

PLATFORM SPECIFIC top

No special consideration.

NOTES top

None.