123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef _BYTESWAP_H
- #define _BYTESWAP_H 1
- #include <bits/byteswap.h>
- #define bswap_16(x) __bswap_16 (x)
- #define bswap_32(x) __bswap_32 (x)
- #if defined __GNUC__ && __GNUC__ >= 2
- # define bswap_64(x) __bswap_64 (x)
- #endif
- #endif
|