Loading...
Searching...
No Matches
Go to the documentation of this file.
23#define PACKED __attribute__ ((packed))
24#define ALIGN(n) __declspec(align(n))
25#define NOOPT __attribute__ ((optimize (0)))
26#define MAXOPT __attribute__ ((optimize (3)))
29#define BE(value) ((((value) & 0xFF00) >> 8) | (((value) & 0x00FF) << 8))