]> cvs.zerfleddert.de Git - proxmark3-svn/blob - linux/translate.h
with em410xread, retest if we read our bits the wrong way (1=0 and 0=1)
[proxmark3-svn] / linux / translate.h
1 #define BYTE unsigned char
2 #define WORD unsigned short
3 #define DWORD unsigned int
4 #define TRUE 1
5 #define FALSE 0
6 #define BOOL int
7
8 #define max(a,b) (((a)>(b))?(a):(b))
9 #define min(a,b) (((a)>(b))?(b):(a))
Impressum, Datenschutz