blob: 3a9ec3ee8e7c7ce3db0629b757494dbc0f9f3f9f [file] [log] [blame]
Amit Pundird477f822020-02-07 22:26:08 +05301#ifndef __UTIL_H__
2#define __UTIL_H__
3
4#define MIN(x, y) ((x) < (y) ? (x) : (y))
5#define MAX(x, y) ((x) > (y) ? (x) : (y))
6
7void print_hex_dump(const char *prefix, const void *buf, size_t len);
8
9#endif