generic_endianess.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef _generic_endianess_
00042 #define _generic_endianess_
00043
00044 #include <stdint.h>
00045
00046 #include "util/endianness.h"
00047
00048 namespace famouso {
00049 namespace util {
00050
00058 static inline const uint8_t hton(const uint8_t value) {
00059 return (value);
00060 }
00061
00065 static inline const int8_t hton(const int8_t value) {
00066 return (value);
00067 }
00068
00072 static inline const uint16_t hton(const uint16_t value) {
00073 return (htons(value));
00074 }
00075
00079 static inline const int16_t hton(const int16_t value) {
00080 return (htons(value));
00081 }
00082
00086 static inline const uint32_t hton(const uint32_t value) {
00087 return (htonl(value));
00088 }
00089
00093 static inline const int32_t hton(const int32_t value) {
00094 return (htonl(value));
00095 }
00096
00100 static inline const uint64_t hton(const uint64_t value) {
00101 return (htonll(value));
00102 }
00103
00107 static inline const int64_t hton(const int64_t value) {
00108 return (htonll(value));
00109 }
00110
00118 static inline const uint8_t ntoh(const uint8_t value) {
00119 return (value);
00120 }
00121
00125 static inline const int8_t ntoh(const int8_t value) {
00126 return (value);
00127 }
00128
00132 static inline const uint16_t ntoh(const uint16_t value) {
00133 return (ntohs(value));
00134 }
00135
00139 static inline const int16_t ntoh(const int16_t value) {
00140 return (ntohs(value));
00141 }
00142
00146 static inline const uint32_t ntoh(const uint32_t value) {
00147 return (ntohl(value));
00148 }
00149
00153 static inline const int32_t ntoh(const int32_t value) {
00154 return (ntohl(value));
00155 }
00156
00160 static inline const uint64_t ntoh(const uint64_t value) {
00161 return (ntohll(value));
00162 }
00163
00167 static inline const int64_t ntoh(const int64_t value) {
00168 return (ntohll(value));
00169 }
00170
00171 }
00172 }
00173
00174 #endif // _generic_endianess_