mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
4860352fb8
d stands for disk-byte-order (as opposed to n for network-byte-order) Disk-byte-order set as Intel byte order for now git-svn-id: file:///svn/toku/tokudb@10694 c7de825b-a66e-492c-adef-691d508d4ae1
41 lines
581 B
C
41 lines
581 B
C
#ifndef _TOKU_HTONL_H
|
|
#define _TOKU_HTONL_H
|
|
|
|
#if !defined(_WIN32)
|
|
#error
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined(__INTEL_COMPILER)
|
|
|
|
// assume endian == LITTLE_ENDIAN
|
|
|
|
static inline uint32_t toku_htonl(uint32_t i) {
|
|
return _bswap(i);
|
|
}
|
|
|
|
static inline uint32_t toku_ntohl(uint32_t i) {
|
|
return _bswap(i);
|
|
}
|
|
|
|
#elif defined(_MSVC_VER)
|
|
#include <winsock.h>
|
|
|
|
static inline uint32_t toku_htonl(uint32_t i) {
|
|
return htonl(i);
|
|
}
|
|
|
|
static inline uint32_t toku_ntohl(uint32_t i) {
|
|
return ntonl(i);
|
|
}
|
|
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
};
|
|
#endif
|
|
|
|
#endif
|