ByteOrder.hxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __ByteOrder__
00023 #define __ByteOrder__
00024
00025
00026
00027
00028 #ifdef __BIG_ENDIAN__
00029 # define CLAM_BIG_ENDIAN
00030 #endif
00031
00032 #ifdef __LITTLE_ENDIAN__
00033 # define CLAM_LITTLE_ENDIAN
00034 #endif
00035
00036
00037
00038
00039 #ifdef linux
00040 # include <sys/param.h>
00041 # if __BYTE_ORDER == __LITTLE_ENDIAN
00042 # define CLAM_LITTLE_ENDIAN
00043 # endif
00044 # if __BYTE_ORDER == __BIG_ENDIAN
00045 # define CLAM_BIG_ENDIAN
00046 # endif
00047 #endif
00048
00049
00050
00051
00052 #ifdef WIN32
00053 # define CLAM_LITTLE_ENDIAN
00054 #endif
00055
00056
00057
00058
00059 #ifdef CLAM_LITTLE_ENDIAN
00060 # ifdef CLAM_BIG_ENDIAN
00061 # error confused about endianity
00062 # endif
00063 #endif
00064
00065 #ifndef CLAM_LITTLE_ENDIAN
00066 # ifndef CLAM_BIG_ENDIAN
00067 # error could not determine endianity
00068 # endif
00069 #endif
00070
00071
00072 #endif
00073