gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:htonl from t2ex/bsd_source/t2ex/network/net/src_bsd/sys/endian.h (0.00 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/endian.h - 9.5KB - 353 lines
67: __BEGIN_DECLS
68: uint32_t htonl(uint32_t) __attribute__((__const__));
69: uint16_t htons(uint16_t) __attribute__((__const__));
127: #define ntohs(x) (x) 128: #define htonl(x) (x) 129: #define htons(x) (x)
139: #define ntohs(x) bswap16((uint16_t)(x)) 140: #define htonl(x) bswap32((uint32_t)(x)) 141: #define htons(x) bswap16((uint16_t)(x))