11 lines
169 B
C
11 lines
169 B
C
#ifndef _UTIL_H
|
|
#define _UTIL_H
|
|
|
|
|
|
void dump_hex(uint8_t * buf, int size);
|
|
|
|
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
|
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#endif
|