blob: 0d65ff8aa26ecfe4077687fd8d7d67fec8859691 [file] [log] [blame]
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Elliott Hughesa9a02ac2013-09-30 14:46:47 -070028
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070029#ifndef _STDINT_H
30#define _STDINT_H
31
32#include <stddef.h>
Elliott Hughes9f87a0b2014-02-07 14:55:58 -080033
34typedef __signed char __int8_t;
35typedef unsigned char __uint8_t;
36typedef short __int16_t;
37typedef unsigned short __uint16_t;
38typedef int __int32_t;
39typedef unsigned int __uint32_t;
40#if __LP64__
41typedef long __int64_t;
42typedef unsigned long __uint64_t;
43#else
44typedef long long __int64_t;
45typedef unsigned long long __uint64_t;
46#endif
47
48#if __LP64__
49typedef long __intptr_t;
50typedef unsigned long __uintptr_t;
51#else
52typedef int __intptr_t;
53typedef unsigned int __uintptr_t;
54#endif
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070055
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070056typedef __int8_t int8_t;
57typedef __uint8_t uint8_t;
Elliott Hughese2a292d2014-01-24 16:37:04 -080058
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070059typedef __int16_t int16_t;
60typedef __uint16_t uint16_t;
Elliott Hughese2a292d2014-01-24 16:37:04 -080061
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070062typedef __int32_t int32_t;
63typedef __uint32_t uint32_t;
Elliott Hughese2a292d2014-01-24 16:37:04 -080064
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070065typedef __int64_t int64_t;
66typedef __uint64_t uint64_t;
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070067
Elliott Hughes9f87a0b2014-02-07 14:55:58 -080068typedef __intptr_t intptr_t;
69typedef __uintptr_t uintptr_t;
70
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070071typedef int8_t int_least8_t;
72typedef int8_t int_fast8_t;
73
74typedef uint8_t uint_least8_t;
75typedef uint8_t uint_fast8_t;
76
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070077typedef int16_t int_least16_t;
78typedef int32_t int_fast16_t;
79
80typedef uint16_t uint_least16_t;
81typedef uint32_t uint_fast16_t;
82
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070083typedef int32_t int_least32_t;
84typedef int32_t int_fast32_t;
85
86typedef uint32_t uint_least32_t;
87typedef uint32_t uint_fast32_t;
88
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070089typedef int64_t int_least64_t;
90typedef int64_t int_fast64_t;
91
92typedef uint64_t uint_least64_t;
93typedef uint64_t uint_fast64_t;
94
Elliott Hughes9f87a0b2014-02-07 14:55:58 -080095typedef uint64_t uintmax_t;
96typedef int64_t intmax_t;
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070097
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -070098/* Keep the kernel from trying to define these types... */
99#define __BIT_TYPES_DEFINED__
100
Elliott Hughese2a292d2014-01-24 16:37:04 -0800101#define INT8_C(c) c
102#define INT_LEAST8_C(c) INT8_C(c)
103#define INT_FAST8_C(c) INT8_C(c)
104
105#define UINT8_C(c) c
106#define UINT_LEAST8_C(c) UINT8_C(c)
107#define UINT_FAST8_C(c) UINT8_C(c)
108
109#define INT16_C(c) c
110#define INT_LEAST16_C(c) INT16_C(c)
111#define INT_FAST16_C(c) INT32_C(c)
112
113#define UINT16_C(c) c
114#define UINT_LEAST16_C(c) UINT16_C(c)
115#define UINT_FAST16_C(c) UINT32_C(c)
116#define INT32_C(c) c
117#define INT_LEAST32_C(c) INT32_C(c)
118#define INT_FAST32_C(c) INT32_C(c)
119
120#define UINT32_C(c) c ## U
121#define UINT_LEAST32_C(c) UINT32_C(c)
122#define UINT_FAST32_C(c) UINT32_C(c)
123#define INT_LEAST64_C(c) INT64_C(c)
124#define INT_FAST64_C(c) INT64_C(c)
125
126#define UINT_LEAST64_C(c) UINT64_C(c)
127#define UINT_FAST64_C(c) UINT64_C(c)
128
129#define INTMAX_C(c) INT64_C(c)
130#define UINTMAX_C(c) UINT64_C(c)
131
132#ifdef __LP64__
133# define INT64_C(c) c ## L
134# define UINT64_C(c) c ## UL
135# define INTPTR_C(c) INT64_C(c)
136# define UINTPTR_C(c) UINT64_C(c)
137# define PTRDIFF_C(c) INT64_C(c)
138#else
139# define INT64_C(c) c ## LL
140# define UINT64_C(c) c ## ULL
141# define INTPTR_C(c) INT32_C(c)
142# define UINTPTR_C(c) UINT32_C(c)
143# define PTRDIFF_C(c) INT32_C(c)
144#endif
145
146#define INT8_MIN (-128)
147#define INT8_MAX (127)
148#define INT_LEAST8_MIN INT8_MIN
149#define INT_LEAST8_MAX INT8_MAX
150#define INT_FAST8_MIN INT8_MIN
151#define INT_FAST8_MAX INT8_MAX
152
153#define UINT8_MAX (255)
154#define UINT_LEAST8_MAX UINT8_MAX
155#define UINT_FAST8_MAX UINT8_MAX
156
157#define INT16_MIN (-32768)
158#define INT16_MAX (32767)
159#define INT_LEAST16_MIN INT16_MIN
160#define INT_LEAST16_MAX INT16_MAX
161#define INT_FAST16_MIN INT32_MIN
162#define INT_FAST16_MAX INT32_MAX
163
164#define UINT16_MAX (65535)
165#define UINT_LEAST16_MAX UINT16_MAX
166#define UINT_FAST16_MAX UINT32_MAX
167
168#define INT32_MIN (-2147483647-1)
169#define INT32_MAX (2147483647)
170#define INT_LEAST32_MIN INT32_MIN
171#define INT_LEAST32_MAX INT32_MAX
172#define INT_FAST32_MIN INT32_MIN
173#define INT_FAST32_MAX INT32_MAX
174
175#define UINT32_MAX (4294967295U)
176#define UINT_LEAST32_MAX UINT32_MAX
177#define UINT_FAST32_MAX UINT32_MAX
178
179#define INT64_MIN (INT64_C(-9223372036854775807)-1)
180#define INT64_MAX (INT64_C(9223372036854775807))
181#define INT_LEAST64_MIN INT64_MIN
182#define INT_LEAST64_MAX INT64_MAX
183#define INT_FAST64_MIN INT64_MIN
184#define INT_FAST64_MAX INT64_MAX
185#define UINT64_MAX (UINT64_C(18446744073709551615))
186
187#define UINT_LEAST64_MAX UINT64_MAX
188#define UINT_FAST64_MAX UINT64_MAX
189
190#define INTMAX_MIN INT64_MIN
191#define INTMAX_MAX INT64_MAX
192#define UINTMAX_MAX UINT64_MAX
193
194#define SIG_ATOMIC_MAX INT32_MAX
195#define SIG_ATOMIC_MIN INT32_MIN
196
197#ifndef WCHAR_MAX /* These might also have been defined by <wchar.h>. */
198# define WCHAR_MAX INT32_MAX
199# define WCHAR_MIN INT32_MIN
200#endif
201
202#define WINT_MAX INT32_MAX
203#define WINT_MIN INT32_MIN
204
205#ifdef __LP64__
206# define INTPTR_MIN INT64_MIN
207# define INTPTR_MAX INT64_MAX
208# define UINTPTR_MAX UINT64_MAX
209# define PTRDIFF_MIN INT64_MIN
210# define PTRDIFF_MAX INT64_MAX
211# define SIZE_MAX UINT64_MAX
212#else
213# define INTPTR_MIN INT32_MIN
214# define INTPTR_MAX INT32_MAX
215# define UINTPTR_MAX UINT32_MAX
216# define PTRDIFF_MIN INT32_MIN
217# define PTRDIFF_MAX INT32_MAX
218# define SIZE_MAX UINT32_MAX
219#endif
220
The Android Open Source Projecta27d2ba2008-10-21 07:00:00 -0700221#endif /* _STDINT_H */