1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef LEPTONICA_ENDIANNESS_H #define LEPTONICA_ENDIANNESS_H #include "arch.h" #if ARCH_IS_BIG_ENDIAN #define L_BIG_ENDIAN #endif #ifdef L_BIG_ENDIAN #else # ifndef L_LITTLE_ENDIAN # define L_LITTLE_ENDIAN # endif #endif #endif