OSDN Git Service

Move endianness stuff into a separate header.
[android-x86/external-exfat.git] / libexfat / byteorder.h
1 /*
2         byteorder.h (12.01.10)
3         Endianness stuff. exFAT uses little-endian byte order.
4
5         Copyright (C) 2009, 2010  Andrew Nayenko
6
7         This program is free software: you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation, either version 3 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef BYTEORDER_H_INCLUDED
22 #define BYTEORDER_H_INCLUDED
23
24 #include <stdint.h>
25 #include <endian.h>
26 #include <byteswap.h>
27
28 typedef struct { uint16_t __u16; } le16_t;
29 typedef struct { uint32_t __u32; } le32_t;
30 typedef struct { uint64_t __u64; } le64_t;
31
32 #if __BYTE_ORDER == __LITTLE_ENDIAN
33 static inline uint16_t le16_to_cpu(le16_t v) { return v.__u16; }
34 static inline uint32_t le32_to_cpu(le32_t v) { return v.__u32; }
35 static inline uint64_t le64_to_cpu(le64_t v) { return v.__u64; }
36
37 static inline le16_t cpu_to_le16(uint16_t v) { le16_t t = {v}; return t; }
38 static inline le32_t cpu_to_le32(uint32_t v) { le32_t t = {v}; return t; }
39 static inline le64_t cpu_to_le64(uint64_t v) { le64_t t = {v}; return t; }
40 #elif __BYTE_ORDER == __BIG_ENDIAN
41 static inline uint16_t le16_to_cpu(le16_t v) { return bswap_16(v.__u16); }
42 static inline uint32_t le32_to_cpu(le32_t v) { return bswap_32(v.__u32); }
43 static inline uint64_t le64_to_cpu(le64_t v) { return bswap_64(v.__u64); }
44
45 static inline le16_t cpu_to_le16(uint16_t v)
46         { le16_t t = {bswap_16(v)}; return t; }
47 static inline le32_t cpu_to_le32(uint32_t v)
48         { le32_t t = {bswap_32(v)}; return t; }
49 static inline le64_t cpu_to_le64(uint64_t v)
50         { le64_t t = {bswap_64(v)}; return t; }
51 #else
52 #error Wow! You have a PDP machine?!
53 #endif
54
55 #endif /* ifndef BYTEORDER_H_INCLUDED */