LMMS
Loading...
Searching...
No Matches
endswap.h File Reference

Go to the source code of this file.

Macros

#define ENDSWAP_16(x)
#define ENDSWAP_32(x)
#define H2LE_16(x)
#define H2LE_32(x)

Macro Definition Documentation

◆ ENDSWAP_16

#define ENDSWAP_16 ( x)
Value:
((((x) >> 8) & 0xFF) | (((x) & 0xFF) << 8))
unsigned x[BMAX+1]
Definition inflate.c:1586

◆ ENDSWAP_32

#define ENDSWAP_32 ( x)
Value:
((((x) >> 24) & 0xFF) | (((x) >> 8) & 0xFF00) | (((x) & 0xFF00) << 8) | (((x) & 0xFF) << 24))

◆ H2LE_16

#define H2LE_16 ( x)
Value:
(x)

◆ H2LE_32

#define H2LE_32 ( x)
Value:
(x)