ExitNow macro
Unconditionally executes @a ... and branches to the local label 'exit'.
Syntax
#define ExitNow(...) \
do \
{ \
__VA_ARGS__; \
goto exit; \
} while (false)
Notes
The use of this interface implies neither success nor failure for the overall exit status of the enclosing function body.