typedef struct verbosity VERBOSITY; struct verbosity { const char *tag; const char *help; } ; extern VERBOSITY verbosities[]; extern unsigned int verbose; #define VERB(n) (verbose & (1U << VERBOSE_##n))