solo/util.h
2018-04-30 23:27:26 -04:00

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