blob: c62ba7f2af990019632d93ddfe63126518180d4d [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*-
2 * Copyright (c) 1997 Niklas Hallqvist. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080025#ifndef _SYS_ENDIAN_H_
26#define _SYS_ENDIAN_H_
27
28#include <sys/cdefs.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029
Elliott Hughes135b1032014-05-13 18:42:12 -070030#include <stdint.h>
31
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080032#define _LITTLE_ENDIAN 1234
33#define _BIG_ENDIAN 4321
34#define _PDP_ENDIAN 3412
Elliott Hughes56e01732014-12-08 20:32:11 -080035#define _BYTE_ORDER _LITTLE_ENDIAN
36#define __LITTLE_ENDIAN_BITFIELD
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080037
38#if __BSD_VISIBLE
Elliott Hughes56e01732014-12-08 20:32:11 -080039#define LITTLE_ENDIAN _LITTLE_ENDIAN
40#define BIG_ENDIAN _BIG_ENDIAN
41#define PDP_ENDIAN _PDP_ENDIAN
42#define BYTE_ORDER _BYTE_ORDER
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080043#endif
44
Elliott Hughes56e01732014-12-08 20:32:11 -080045#ifndef __LITTLE_ENDIAN
46#define __LITTLE_ENDIAN _LITTLE_ENDIAN
47#endif
48#ifndef __BIG_ENDIAN
49#define __BIG_ENDIAN _BIG_ENDIAN
50#endif
51#define __BYTE_ORDER _BYTE_ORDER
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080052
Elliott Hughes56e01732014-12-08 20:32:11 -080053#define __swap16 __builtin_bswap16
54#define __swap32 __builtin_bswap32
55#define __swap64 __builtin_bswap64
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080056
57#if __BSD_VISIBLE
58#define swap16 __swap16
59#define swap32 __swap32
60#define swap64 __swap64
61#define swap16_multi __swap16_multi
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080062
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080063#define htobe16 __swap16
64#define htobe32 __swap32
65#define htobe64 __swap64
66#define betoh16 __swap16
67#define betoh32 __swap32
68#define betoh64 __swap64
69
70#define htole16(x) (x)
71#define htole32(x) (x)
72#define htole64(x) (x)
73#define letoh16(x) (x)
74#define letoh32(x) (x)
75#define letoh64(x) (x)
76#endif /* __BSD_VISIBLE */
77
Elliott Hughes6a41b0f2014-05-13 16:05:51 -070078/* glibc compatibility. */
79__BEGIN_DECLS
80uint32_t htonl(uint32_t) __pure2;
81uint16_t htons(uint16_t) __pure2;
82uint32_t ntohl(uint32_t) __pure2;
83uint16_t ntohs(uint16_t) __pure2;
84__END_DECLS
85
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080086#define htonl(x) __swap32(x)
Elliott Hughes6a41b0f2014-05-13 16:05:51 -070087#define htons(x) __swap16(x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080088#define ntohl(x) __swap32(x)
Elliott Hughes6a41b0f2014-05-13 16:05:51 -070089#define ntohs(x) __swap16(x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080090
91/* Bionic additions */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080092#define htonq(x) __swap64(x)
Elliott Hughes6a41b0f2014-05-13 16:05:51 -070093#define ntohq(x) __swap64(x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080094
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080095#if __BSD_VISIBLE
96#define NTOHL(x) (x) = ntohl((u_int32_t)(x))
97#define NTOHS(x) (x) = ntohs((u_int16_t)(x))
98#define HTONL(x) (x) = htonl((u_int32_t)(x))
99#define HTONS(x) (x) = htons((u_int16_t)(x))
100#endif
101
Elliott Hughescf820d72013-02-22 11:01:17 -0800102#ifdef __BSD_VISIBLE
103/*
104 * glibc-compatible beXXtoh/leXXtoh synonyms for htobeXX/htoleXX.
105 * The BSDs export both sets of names, bionic historically only
106 * exported the ones above (or on the rhs here), and glibc only
107 * exports these names (on the lhs).
108 */
109#define be16toh(x) htobe16(x)
110#define be32toh(x) htobe32(x)
111#define be64toh(x) htobe64(x)
112#define le16toh(x) htole16(x)
113#define le32toh(x) htole32(x)
114#define le64toh(x) htole64(x)
115#endif
116
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800117#endif /* _SYS_ENDIAN_H_ */