/* Macros */ #define N_ELEM(x) (sizeof(x)/sizeof(*(x))) /* Globals */ extern int loglevel; /* Debug functions */ void info(const char *fmt, ...); void debug(const char *fmt, ...); void warn(const char *fmt, ...); void error(const char *fmt, ...); /* Output functions */ void hexdump(const char *fmt, const char *prefix, const uint8_t *data, ...); /* Misc */ void *alloc0(int size);