]> pd.if.org Git - pdclib.old/blob - includes/stdint.h
Modify various POSIX platform files so you can build on top of glibc for testing
[pdclib.old] / includes / stdint.h
1 /* $Id$ */
2
3 /* 7.18 Integer types <stdint.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_STDINT_H
10 #define _PDCLIB_STDINT_H _PDCLIB_STDINT_H
11 #include <_PDCLIB_int.h>
12
13 /* 7.18.1.1 Exact-width integer types. */
14
15 typedef _PDCLIB_int8_t  int8_t;
16 typedef _PDCLIB_int16_t int16_t;
17 typedef _PDCLIB_int32_t int32_t;
18 typedef _PDCLIB_int64_t int64_t;
19
20 typedef _PDCLIB_uint8_t  uint8_t;
21 typedef _PDCLIB_uint16_t uint16_t;
22 typedef _PDCLIB_uint32_t uint32_t;
23 typedef _PDCLIB_uint64_t uint64_t;
24
25 /* 7.18.1.2 Minimum-width integer types */
26
27 /* You are allowed to add more types here, e.g. int_least24_t. For the standard
28    types, int_leastN_t is equivalent to the corresponding exact type intN_t by
29    definition.
30 */
31
32 typedef int8_t  int_least8_t;
33 typedef int16_t int_least16_t;
34 typedef int32_t int_least32_t;
35 typedef int64_t int_least64_t;
36
37 typedef uint8_t  uint_least8_t;
38 typedef uint16_t uint_least16_t;
39 typedef uint32_t uint_least32_t;
40 typedef uint64_t uint_least64_t;
41
42 /* 7.18.1.3 Fastest minimum-width integer types */
43
44 /* You are allowed to add more types here, e.g. int_fast24_t. */
45
46 typedef _PDCLIB_int_fast8_t  int_fast8_t;
47 typedef _PDCLIB_int_fast16_t int_fast16_t;
48 typedef _PDCLIB_int_fast32_t int_fast32_t;
49 typedef _PDCLIB_int_fast64_t int_fast64_t;
50
51 typedef _PDCLIB_uint_fast8_t  uint_fast8_t;
52 typedef _PDCLIB_uint_fast16_t uint_fast16_t;
53 typedef _PDCLIB_uint_fast32_t uint_fast32_t;
54 typedef _PDCLIB_uint_fast64_t uint_fast64_t;
55
56 /* 7.18.1.4 Integer types capable of holding object pointers */
57
58 typedef _PDCLIB_intptr_t  intptr_t;
59 typedef _PDCLIB_uintptr_t uintptr_t;
60
61 /* 7.18.1.5 Greatest-width integer types */
62
63 typedef _PDCLIB_intmax_t  intmax_t;
64 typedef _PDCLIB_uintmax_t uintmax_t;
65
66 /* 7.18.2 Limits of specified-width integer types */
67
68 #ifdef __cplusplus
69 #ifndef __STDC_LIMIT_MACROS
70 #define _PDCLIB_NO_LIMIT_MACROS
71 #endif
72 #endif
73
74 #ifndef _PDCLIB_NO_LIMIT_MACROS
75
76 /* 7.18.2.1 Limits of exact-width integer types */
77
78 #define INT8_MIN  _PDCLIB_INT8_MIN
79 #define INT8_MAX  _PDCLIB_INT8_MAX
80 #define UINT8_MAX _PDCLIB_UINT8_MAX
81
82 #define INT16_MIN  _PDCLIB_INT16_MIN
83 #define INT16_MAX  _PDCLIB_INT16_MAX
84 #define UINT16_MAX _PDCLIB_UINT16_MAX
85
86 #define INT32_MIN  _PDCLIB_INT32_MIN
87 #define INT32_MAX  _PDCLIB_INT32_MAX
88 #define UINT32_MAX _PDCLIB_UINT32_MAX
89
90 #define INT64_MIN  _PDCLIB_INT64_MIN
91 #define INT64_MAX  _PDCLIB_INT64_MAX
92 #define UINT64_MAX _PDCLIB_UINT64_MAX
93
94 /* 7.18.2.2 Limits of minimum-width integer types */
95
96 /* For the standard widths, least and exact types are equivalent.
97    You are allowed to add more types here, e.g. int_least24_t.
98 */
99
100 #define INT_LEAST8_MIN  INT8_MIN
101 #define INT_LEAST8_MAX  INT8_MAX
102 #define UINT_LEAST8_MAX UINT8_MAX
103
104 #define INT_LEAST16_MIN  INT16_MIN
105 #define INT_LEAST16_MAX  INT16_MAX
106 #define UINT_LEAST16_MAX UINT16_MAX
107
108 #define INT_LEAST32_MIN  INT32_MIN
109 #define INT_LEAST32_MAX  INT32_MAX
110 #define UINT_LEAST32_MAX UINT32_MAX
111
112 #define INT_LEAST64_MIN  INT64_MIN
113 #define INT_LEAST64_MAX  INT64_MAX
114 #define UINT_LEAST64_MAX UINT64_MAX
115
116 /* 7.18.2.3 Limits of fastest minimum-width integer types */
117
118 #define INT_FAST8_MIN  _PDCLIB_INT_FAST8_MIN
119 #define INT_FAST8_MAX  _PDCLIB_INT_FAST8_MAX
120 #define UINT_FAST8_MAX _PDCLIB_UINT_FAST8_MAX
121
122 #define INT_FAST16_MIN  _PDCLIB_INT_FAST16_MIN
123 #define INT_FAST16_MAX  _PDCLIB_INT_FAST16_MAX
124 #define UINT_FAST16_MAX _PDCLIB_UINT_FAST16_MAX
125
126 #define INT_FAST32_MIN  _PDCLIB_INT_FAST32_MIN
127 #define INT_FAST32_MAX  _PDCLIB_INT_FAST32_MAX
128 #define UINT_FAST32_MAX _PDCLIB_UINT_FAST32_MAX
129
130 #define INT_FAST64_MIN  _PDCLIB_INT_FAST64_MIN
131 #define INT_FAST64_MAX  _PDCLIB_INT_FAST64_MAX
132 #define UINT_FAST64_MAX _PDCLIB_UINT_FAST64_MAX
133
134 /* 7.18.2.4 Limits of integer types capable of holding object pointers */
135
136 #define INTPTR_MIN  _PDCLIB_INTPTR_MIN
137 #define INTPTR_MAX  _PDCLIB_INTPTR_MAX
138 #define UINTPTR_MAX _PDCLIB_UINTPTR_MAX
139
140 /* 7.18.2.5 Limits of greatest-width integer types */
141
142 #define INTMAX_MIN  _PDCLIB_INTMAX_MIN
143 #define INTMAX_MAX  _PDCLIB_INTMAX_MAX
144 #define UINTMAX_MAX _PDCLIB_UINTMAX_MAX
145
146 /* 7.18.3 Limits of other integer types */
147
148 #define PTRDIFF_MIN _PDCLIB_PTRDIFF_MIN
149 #define PTRDIFF_MAX _PDCLIB_PTRDIFF_MAX
150
151 #define SIG_ATOMIC_MIN _PDCLIB_SIG_ATOMIC_MIN
152 #define SIG_ATOMIC_MAX _PDCLIB_SIG_ATOMIC_MAX
153
154 #define SIZE_MAX _PDCLIB_SIZE_MAX
155
156 #ifndef _PDCLIB_WCHAR_MIN_MAX_DEFINED
157 #define _PDCLIB_WCHAR_MIN_MAX_DEFINED
158 #define WCHAR_MIN _PDCLIB_WCHAR_MIN
159 #define WCHAR_MAX _PDCLIB_WCHAR_MAX
160 #endif
161
162 #define WINT_MIN _PDCLIB_WINT_MIN
163 #define WINT_MAX _PDCLIB_WINT_MAX
164
165 #endif
166
167 /* 7.18.4 Macros for integer constants */
168
169 #ifdef __cplusplus
170 #ifndef __STDC_CONSTANT_MACROS
171 #define _PDCLIB_NO_CONSTANT_MACROS
172 #endif
173 #endif
174
175 #ifndef _PDCLIB_NO_CONSTANT_MACROS
176
177 /* 7.18.4.1 Macros for minimum-width integer constants */
178
179 /* As the minimum-width types - for the required widths of 8, 16, 32, and 64
180    bits - are expressed in terms of the exact-width types, the mechanism for
181    these macros is to append the literal of that exact-width type to the macro
182    parameter.
183    This is considered a hack, as the author is not sure his understanding of
184    the requirements of this macro is correct. Any input appreciated.
185 */
186
187 /* Expand to an integer constant of specified value and type int_leastN_t */
188
189 #define INT8_C( value )  value
190 #define INT16_C( value ) value
191 #define INT32_C( value ) _PDCLIB_concat( value, _PDCLIB_INT32_LITERAL )
192 #define INT64_C( value ) _PDCLIB_concat( value, _PDCLIB_INT64_LITERAL )
193
194 /* Expand to an integer constant of specified value and type uint_leastN_t */
195
196 #define UINT8_C( value )  value
197 #define UINT16_C( value ) value
198 #define UINT32_C( value ) _PDCLIB_concat( value, _PDCLIB_UINT32_LITERAL )
199 #define UINT64_C( value ) _PDCLIB_concat( value, _PDCLIB_UINT64_LITERAL )
200
201 /* 7.18.4.2 Macros for greatest-width integer constants */
202
203 /* Expand to an integer constant of specified value and type intmax_t */
204 #define INTMAX_C( value ) _PDCLIB_INTMAX_C( value )
205
206 /* Expand to an integer constant of specified value and type uintmax_t */
207 #define UINTMAX_C( value ) _PDCLIB_UINTMAX_C( value )
208
209 #endif
210
211 #endif
212