#ifndef DEBUG_H
#define DEBUG_H

#include <stdbool.h>

#ifdef NDEBUG
#define opt_debug false
#else
extern bool opt_debug;
#endif

#endif

