move things around and add efm8 and efm32 builds
This commit is contained in:
15
fido2/util.h
Normal file
15
fido2/util.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#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
|
Reference in New Issue
Block a user