OSDN Git Service

Handle 64-bit offsets correctly on Android
[android-x86/external-exfat.git] / libexfat / platform.h
1 /*
2         platform.h (14.05.13)
3         OS-specific code (libc-specific in fact). Note that systems with the
4         same kernel can use different libc implementations.
5
6         Copyright (C) 2010-2013  Andrew Nayenko
7
8         This program is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         This program is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #ifndef PLATFORM_H_INCLUDED
23 #define PLATFORM_H_INCLUDED
24
25 #if defined(__GLIBC__) || defined (__ANDROID__)
26
27 #include <endian.h>
28 #include <byteswap.h>
29
30 #elif defined(__APPLE__)
31
32 #include <machine/endian.h>
33 #include <libkern/OSByteOrder.h>
34 #define bswap_16(x) OSSwapInt16(x)
35 #define bswap_32(x) OSSwapInt32(x)
36 #define bswap_64(x) OSSwapInt64(x)
37 #define __BYTE_ORDER BYTE_ORDER
38 #define __LITTLE_ENDIAN LITTLE_ENDIAN
39 #define __BIG_ENDIAN BIG_ENDIAN
40
41 #elif defined(__FreeBSD__) || defined(__DragonFlyBSD__) || defined(__NetBSD__)
42
43 #include <sys/endian.h>
44 #define bswap_16(x) bswap16(x)
45 #define bswap_32(x) bswap32(x)
46 #define bswap_64(x) bswap64(x)
47 #define __BYTE_ORDER _BYTE_ORDER
48 #define __LITTLE_ENDIAN _LITTLE_ENDIAN
49 #define __BIG_ENDIAN _BIG_ENDIAN
50
51 #else 
52 #error Unknown platform
53 #endif
54
55 #endif /* ifndef PLATFORM_H_INCLUDED */