toxcore/testing/hstox/byteswap.h

7 lines
144 B
C
Raw Normal View History

#ifdef __APPLE__
#include <libkern/OSByteOrder.h>
#define htobe64(x) OSSwapHostToBigInt64(x)
#define be64toh(x) OSSwapBigToHostInt64(x)
#endif