solo/fido2/util.h
2018-06-27 21:39:19 -04:00

16 lines
208 B
C

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