src/util.h in mockspotify-0.1.2 vs src/util.h in mockspotify-0.1.3

- old
+ new

@@ -4,9 +4,10 @@ /*** Utility functions ***/ #define ALLOC(type) ALLOC_N(type, 1) #define ALLOC_N(type, n) ((type*) xmalloc(sizeof(type) * (n))) void *xmalloc(size_t); +char *hextoa(const char *, int); #define STARTS_WITH(x, y) (strncmp((x), (y), strlen(y)) == 0) #endif /* UTIL_H */