| 34 | |
| 35 | #if HAVE_DECL_BSWAP_32 == 0 |
| 36 | inline uint32_t bswap_32(uint32_t x) |
| 37 | { |
| 38 | return (((x & 0xff000000U) >> 24) | ((x & 0x00ff0000U) >> 8) | |
| 39 | ((x & 0x0000ff00U) << 8) | ((x & 0x000000ffU) << 24)); |
| 40 | } |
| 41 | #endif // HAVE_DECL_BSWAP32 == 0 |
| 42 | |
| 43 | #if HAVE_DECL_BSWAP_64 == 0 |
no outgoing calls