2014-06-11 21:32:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2016-05-22 05:33:19 +00:00
|
|
|
#ifdef _WIN32
|
2014-06-11 21:32:05 +00:00
|
|
|
# include <stdlib.h>
|
|
|
|
|
# define bswap_64(x) _byteswap_uint64(x)
|
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
|
# include <libkern/OSByteOrder.h>
|
|
|
|
|
# define bswap_64(x) OSSwapInt64(x)
|
|
|
|
|
#else
|
|
|
|
|
# include <byteswap.h>
|
|
|
|
|
#endif
|