5a32450718
including many wireless routers from many vendors. The utilities are collected and maintained by the OpenWrt router project. WWW: http://www.openwrt.org/ PR: ports/163537 Submitted by: Stefan Bethke <stb@lassitu.de> Feature safe: yes
9 lines
232 B
C
9 lines
232 B
C
/*
|
|
*
|
|
*/
|
|
|
|
#define bswap_8(x) ((x) & 0xff)
|
|
#define bswap_16(x) ((bswap_8(x) << 8) | bswap_8((x) >> 8))
|
|
#define bswap_32(x) ((bswap_16(x) << 16) | bswap_16((x) >> 16))
|
|
#define bswap_64(x) ((bswap_32(x) << 32) | bswap_32((x) >> 32))
|
|
|