A one-file public-domain library to determine endianness at compile time. Just drop a copy of the header in your source tree, use it and forget about all the platform-specific differences to get that endianess definition!
The usual conversion functions are also provided.
If someone needs to know the endianess at compile time, there are 2 different use cases:
-
in some rare cases one needs to know the endianess to lay out structs and the like, for example an RGB union; or directly in the code.
-
in 99% of the cases, just a conversion from one endian to the other is needed, e.g. when a protocol defines that a value is stored in a specific endianness.
The header tries its best to determine the endianess from a number of possible
sources, and if successful, defines both ENDIANNESS_LE
and ENDIANNESS_BE
macros to 0 or 1.
#include "endianness.h"
#if ENDIANNESS_LE +0 == 1
/* Little Endian code here */
#elif ENDIANNESS_BE +0 == 1
/* Big Endian code here */
#endif
or if the macro is to be used directly from the code, you can even use the nicer form (taking advantage of dead code elimination done by the compiler):
if (ENDIANNESS_LE) {
...
} else {
...
}
Note that on very exotic platforms, the detection may fail. The header then throws an error and tells the user to define the macros by hand (and report the system here so we can get it fixed). However, if your use case is just conversion, there's a way to avoid erroring out. Read on!
In the majority of use cases, one wants just to convert from little to big endian, and vice versa (or actually to and from host endianness!).
The provided endian conversion functions/macros start with the end_
prefix.
end_htobe16(x) // Host to Big Endian 16
end_be16toh(x)
end_htobe32(x)
end_be32toh(x) // Big Endian 32 to Host
end_htobe64(x)
end_be64toh(x)
end_htole16(x)
end_le16toh(x)
end_htole32(x) // Host to Little Endian 32
end_le32toh(x)
end_htole64(x)
end_le64toh(x) // Little Endian 64 to Host
For conversion of network byte order (big endian) to host order:
end_ntoh16(x) // equivalent of ntohs(x) from <netinet/in.h>
end_hton16(x) // htons(x)
end_ntoh32(x) // ntohl(x)
end_hton32(x) // htonl(x)
end_ntoh64(x)
end_hton64(x)
General purpose byteswap functions:
end_bswap16(x)
end_bswap32(x)
end_bswap64(x)
In case the endianness detection failed and you need only those conversions,
you can avoid erroring out by defining ENDIANNESS_PORTABLE_CONVERSION
prior to
including the header:
#define ENDIANNESS_PORTABLE_CONVERSION
#include "endianness.h"
That way, the code will fallback to a slightly slower, but portable version of
the conversion functions.
However, if ENDIANNESS_PORTABLE_CONVERSION
is in use, there's no guarantee
that the macros for use case 1 will be defined!
This file is published under the public domain. In case the concept of public domain does not exist under your jurisdiction, you can consider it to be dual licensed under the MIT, Apache and WTFPL licenses.
If you notice an issue on a platform you're using, feel free to open a PR or issue on the Github repository https://github.com/rofl0r/endianness.h .