2 * Copyright (C) 2011 - David Goulet <dgoulet@efficios.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #ifndef _COMPAT_ENDIAN_H
19 #define _COMPAT_ENDIAN_H
21 #if defined(__linux__) || defined(__CYGWIN__)
25 * htobe/betoh are not defined for glibc <2.9, so add them
26 * explicitly if they are missing.
29 /* Conversion interfaces. */
30 # include <byteswap.h>
32 # if __BYTE_ORDER == __LITTLE_ENDIAN
34 # define htobe16(x) __bswap_16(x)
37 # define htole16(x) (x)
40 # define be16toh(x) __bswap_16(x)
43 # define le16toh(x) (x)
47 # define htobe32(x) __bswap_32(x)
50 # define htole32(x) (x)
53 # define be32toh(x) __bswap_32(x)
56 # define le32toh(x) (x)
60 # define htobe64(x) __bswap_64(x)
63 # define htole64(x) (x)
66 # define be64toh(x) __bswap_64(x)
69 # define le64toh(x) (x)
72 # else /* __BYTE_ORDER == __LITTLE_ENDIAN */
74 # define htobe16(x) (x)
77 # define htole16(x) __bswap_16(x)
80 # define be16toh(x) (x)
83 # define le16toh(x) __bswap_16(x)
87 # define htobe32(x) (x)
90 # define htole32(x) __bswap_32(x)
93 # define be32toh(x) (x)
96 # define le32toh(x) __bswap_32(x)
100 # define htobe64(x) (x)
103 # define htole64(x) __bswap_64(x)
106 # define be64toh(x) (x)
109 # define le64toh(x) __bswap_64(x)
112 # endif /* __BYTE_ORDER == __LITTLE_ENDIAN */
113 #endif /* __USE_BSD */
115 #elif defined(__FreeBSD__)
116 #include <machine/endian.h>
118 #elif defined(__sun__)
119 #include <sys/byteorder.h>
121 #define __BIG_ENDIAN 4321
122 #endif /* __BIG_ENDIAN */
123 #ifndef __LITTLE_ENDIAN
124 #define __LITTLE_ENDIAN 1234
125 #endif /* __LITTLE_ENDIAN */
127 #ifdef _LITTLE_ENDIAN
128 #define __BYTE_ORDER __LITTLE_ENDIAN
129 #endif /* _LITTLE_ENDIAN */
131 #define __BYTE_ORDER __BIG_ENDIAN
132 #endif /* _BIG_ENDIAN */
134 #define LITTLE_ENDIAN __LITTLE_ENDIAN
135 #define BIG_ENDIAN __BIG_ENDIAN
136 #define PDP_ENDIAN __PDP_ENDIAN
137 #define BYTE_ORDER __BYTE_ORDER
139 #define betoh16(x) BE_16(x)
140 #define letoh16(x) LE_16(x)
141 #define betoh32(x) BE_32(x)
142 #define letoh32(x) LE_32(x)
143 #define betoh64(x) BE_64(x)
144 #define letoh64(x) LE_64(x)
145 #define htobe16(x) BE_16(x)
146 #define be16toh(x) BE_16(x)
147 #define htobe32(x) BE_32(x)
148 #define be32toh(x) BE_32(x)
149 #define htobe64(x) BE_64(x)
150 #define be64toh(x) BE_64(x)
152 #elif defined(__APPLE__)
153 # include <machine/endian.h>
154 # include <libkern/OSByteOrder.h>
156 # if BYTE_ORDER == LITTLE_ENDIAN
157 # define htobe16(x) OSSwapConstInt16(x)
158 # define htole16(x) (x)
159 # define be16toh(x) OSSwapConstInt16(x)
160 # define le16toh(x) (x)
162 # define htobe32(x) OSSwapConstInt32(x)
163 # define htole32(x) (x)
164 # define be32toh(x) OSSwapConstInt32(x)
165 # define le32toh(x) (x)
167 # define htobe64(x) OSSwapConstInt64(x)
168 # define htole64(x) (x)
169 # define be64toh(x) OSSwapConstInt64(x)
170 # define le64toh(x) (x)
172 # else /* BYTE_ORDER == LITTLE_ENDIAN */
173 # define htobe16(x) (x)
174 # define htole16(x) OSSwapConstInt16(x)
175 # define be16toh(x) (x)
176 # define le16toh(x) OSSwapConstInt16(x)
178 # define htobe32(x) (x)
179 # define htole32(x) OSSwapConstInt32(x)
180 # define be32toh(x) (x)
181 # define le32toh(x) OSSwapConstInt32(x)
183 # define htobe64(x) (x)
184 # define htole64(x) OSSwapConstInt64(x)
185 # define be64toh(x) (x)
186 # define le64toh(x) OSSwapConstInt64(x)
190 #error "Please add support for your OS."
193 #endif /* _COMPAT_ENDIAN_H */
This page took 0.035175 seconds and 4 git commands to generate.