toxcore/testing/hstox/byteswap.h
2017-12-28 10:29:42 -06:00

11 lines
228 B
C

#if defined(__APPLE__)
#include <libkern/OSByteOrder.h>
#define htobe64(x) OSSwapHostToBigInt64(x)
#define be64toh(x) OSSwapBigToHostInt64(x)
#elif defined (__FreeBSD__)
#include <sys/endian.h>
#else
#include <endian.h>
#endif