Greg Watson | 0f62047 | 2004-03-13 03:43:29 +0000 | [diff] [blame] | 1 | #ifndef _BYTEORDER_H |
| 2 | #define _BYTEORDER_H |
| 3 | |
| 4 | #define __LITTLE_ENDIAN 1234 |
| 5 | |
Stefan Reinauer | 9ea33e9 | 2011-10-14 15:11:16 -0700 | [diff] [blame] | 6 | #include <stdint.h> |
Greg Watson | 0f62047 | 2004-03-13 03:43:29 +0000 | [diff] [blame] | 7 | #include <swab.h> |
| 8 | |
Stefan Reinauer | 9ea33e9 | 2011-10-14 15:11:16 -0700 | [diff] [blame] | 9 | #define cpu_to_le64(x) ((uint64_t)(x)) |
| 10 | #define le64_to_cpu(x) ((uint64_t)(x)) |
| 11 | #define cpu_to_le32(x) ((uint32_t)(x)) |
| 12 | #define le32_to_cpu(x) ((uint32_t)(x)) |
| 13 | #define cpu_to_le16(x) ((uint16_t)(x)) |
| 14 | #define le16_to_cpu(x) ((uint16_t)(x)) |
| 15 | #define cpu_to_be64(x) swab64(x) |
| 16 | #define be64_to_cpu(x) swab64(x) |
Greg Watson | 0f62047 | 2004-03-13 03:43:29 +0000 | [diff] [blame] | 17 | #define cpu_to_be32(x) swab32((x)) |
| 18 | #define be32_to_cpu(x) swab32((x)) |
| 19 | #define cpu_to_be16(x) swab16((x)) |
| 20 | #define be16_to_cpu(x) swab16((x)) |
| 21 | |
Stefan Reinauer | 9ea33e9 | 2011-10-14 15:11:16 -0700 | [diff] [blame] | 22 | #define ntohll(x) be64_to_cpu(x) |
| 23 | #define htonll(x) cpu_to_be64(x) |
| 24 | #define ntohl(x) be32_to_cpu(x) |
| 25 | #define htonl(x) cpu_to_be32(x) |
Stefan Reinauer | d650e99 | 2010-02-22 04:33:13 +0000 | [diff] [blame] | 26 | |
Greg Watson | 0f62047 | 2004-03-13 03:43:29 +0000 | [diff] [blame] | 27 | #endif /* _BYTEORDER_H */ |