Go to the documentation of this file.
16 void hexDump(
char *desc,
void *addr,
int len);
17 int strcicmp(
char const *a,
char const *b);
18 void writeFile(
char *fn,
void *data,
size_t size);
19 void *readFile(
char *fn,
size_t *size);
20 uint64_t diff_micro(
struct timespec *start,
struct timespec *end);
21 void sleepms(
long milliseconds);
22 #define sleepns(ns) nanosleep((const struct timespec[]){{0, ns}}, NULL);
23 void bin_to_strhex(
unsigned char *bin,
unsigned int binsz,
char **result);