solo/fido2/util.h
2018-09-10 20:27:15 +00:00

17 lines
228 B
C

#ifndef _UTIL_H
#define _UTIL_H
#include <stdint.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