11#define VERBOSE_PRINT(a, ...) if (a & ARG_VERBOSE) { printf(__VA_ARGS__); }
char * trim(char *)
Trim leading and trailing whitespace from s
Definition: util.c:86
int hex_to_int(char)
Get the integer value of hexadecimal ASCII representation.
Definition: util.c:25
int parse_int(const char *)
Parse decimal or hexadecimal integer from s
Definition: util.c:48