12345678910111213141516171819202122232425262728293031323334353637383940 |
- #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
|