Go to the documentation of this file. 27 #ifndef _MACHINE_ENDIAN_H 28 #define _MACHINE_ENDIAN_H 31 #define BIG_ENDIAN 4321 32 #define LITTLE_ENDIAN 1234 35 #define BYTE_ORDER BIG_ENDIAN 37 #define BYTE_ORDER LITTLE_ENDIAN 42 #define __bswap_16(x) __builtin_bswap16(x) 43 #define __bswap_32(x) __builtin_bswap32(x) 44 #define __bswap_64(x) __builtin_bswap64(x)