| 41 | |
| 42 | #if HAVE_DECL_BSWAP_32 == 0 |
| 43 | inline uint32_t bswap_32(uint32_t x) |
| 44 | { |
| 45 | return (((x & 0xff000000U) >> 24) | ((x & 0x00ff0000U) >> 8) | |
| 46 | ((x & 0x0000ff00U) << 8) | ((x & 0x000000ffU) << 24)); |
| 47 | } |
| 48 | #endif // HAVE_DECL_BSWAP32 == 0 |
| 49 | |
| 50 | #if HAVE_DECL_BSWAP_64 == 0 |
no outgoing calls