| 50 | } |
| 51 | |
| 52 | static int32_t |
| 53 | lelong(int32_t x) |
| 54 | { |
| 55 | #ifdef __BIG_ENDIAN__ |
| 56 | return ((x & 0xff) << 24) | ((x & 0xff00) << 8) | ((x >> 8) & 0xff00) |
| 57 | | ((x >> 24) & 0xff); |
| 58 | #else |
| 59 | return x; |
| 60 | #endif |
| 61 | } |
| 62 | |
| 63 | #ifdef __GNUC__ |
| 64 | typedef struct tagBMIH { |
no outgoing calls
no test coverage detected