gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:bswap16 from t2ex/bsd_source/t2ex/network/net/src_bsd/sys/bswap.h (0.00 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/bswap.h - 2.4KB - 81 lines
18: #if defined(_KERNEL) || defined(_STANDALONE) || !defined(__BSWAP_RENAME)
19: uint16_t bswap16(uint16_t) __attribute__((__const__));
20: uint32_t bswap32(uint32_t) __attribute__((__const__));
21: #else
22: uint16_t bswap16(uint16_t) __RENAME(__bswap16) __attribute__((__const__));
23: uint32_t bswap32(uint32_t) __RENAME(__bswap32) __attribute__((__const__));
73: 74: #define bswap16(x) \ 75: (__builtin_constant_p((x)) ? \