mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
c6fcce22ce
some minimal porting git-svn-id: file:///svn/toku/tokudb@17597 c7de825b-a66e-492c-adef-691d508d4ae1
41 lines
578 B
C
41 lines
578 B
C
#ifndef _TOKU_HTONL_H
|
|
#define _TOKU_HTONL_H
|
|
|
|
#if !TOKU_WINDOWS
|
|
#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
|