blob: 8dc069f486392bc19919ca6b27af73c65878ca8d [file] [log] [blame]
Ronald G. Minniche0e784a2014-11-26 19:25:47 +00001#ifndef _BYTEORDER_H
2#define _BYTEORDER_H
3
4#define __LITTLE_ENDIAN 1234
5
6#include <stdint.h>
7#include <swab.h>
8
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)
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
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)
26
27#endif /* _BYTEORDER_H */