ao_debug.h
Debug mode

Notes

This module defines a single macro constant indicating whether an application is running in debug mode.

Include

stdbool.h

Constants

AO_DEBUG

#ifndef AO_DEBUG
#ifndef NDEBUG
#ifndef __DEBUG

#define AO_DEBUG (false)

#else

#define AO_DEBUG (true)

#endif
#else

#define AO_DEBUG (false)

#endif
#endif

Indicates whether the application is running in debug mode.