stdint.h
Go to the documentation of this file.
1 /* ISO C9x 7.18 Integer types <stdint.h>
2  * Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794)
3  *
4  * THIS SOFTWARE IS NOT COPYRIGHTED
5  *
6  * Contributor: Danny Smith <danny_r_smith_2001@yahoo.co.nz>
7  *
8  * This source code is offered for use in the public domain. You may
9  * use, modify or distribute it freely.
10  *
11  * This code is distributed in the hope that it will be useful but
12  * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
13  * DISCLAIMED. This includes but is not limited to warranties of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  *
16  * Date: 2000-12-02
17  */
18 
19 
20 #ifndef _STDINT_H
21 #define _STDINT_H
22 #define __need_wint_t
23 #define __need_wchar_t
24 #include <stddef.h>
25 
26 #define HAVE_INT8_T
27 #define HAVE_UINT8_T
28 #define HAVE_INT16_T
29 #define HAVE_UINT16_T
30 #define HAVE_INT32_T
31 #define HAVE_UINT32_T
32 #define HAVE_INT64_T
33 #define HAVE_UINT64_T
34 #define HAVE_INTPTR_T
35 #define HAVE_UINTPTR_T
36 
37 /* 7.18.1.1 Exact-width integer types */
38 typedef signed char int8_t;
39 typedef unsigned char uint8_t;
40 typedef short int16_t;
41 typedef unsigned short uint16_t;
42 typedef int int32_t;
43 typedef unsigned uint32_t;
44 typedef long long int64_t;
45 typedef unsigned long long uint64_t;
46 
47 /* 7.18.1.2 Minimum-width integer types */
48 typedef signed char int_least8_t;
49 typedef unsigned char uint_least8_t;
50 typedef short int_least16_t;
51 typedef unsigned short uint_least16_t;
52 typedef int int_least32_t;
53 typedef unsigned uint_least32_t;
54 typedef long long int_least64_t;
55 typedef unsigned long long uint_least64_t;
56 
57 /* 7.18.1.3 Fastest minimum-width integer types
58  * Not actually guaranteed to be fastest for all purposes
59  * Here we use the exact-width types for 8 and 16-bit ints.
60  */
61 typedef char int_fast8_t;
62 typedef unsigned char uint_fast8_t;
63 typedef short int_fast16_t;
64 typedef unsigned short uint_fast16_t;
65 typedef int int_fast32_t;
66 typedef unsigned int uint_fast32_t;
67 typedef long long int_fast64_t;
68 typedef unsigned long long uint_fast64_t;
69 
70 /* 7.18.1.4 Integer types capable of holding object pointers */
71 typedef int intptr_t;
72 typedef unsigned uintptr_t;
73 
74 /* 7.18.1.5 Greatest-width integer types */
75 typedef long long intmax_t;
76 typedef unsigned long long uintmax_t;
77 
78 /* 7.18.2 Limits of specified-width integer types */
79 #if !defined ( __cplusplus) || defined (__STDC_LIMIT_MACROS)
80 
81 /* 7.18.2.1 Limits of exact-width integer types */
82 #define INT8_MIN (-128)
83 #define INT16_MIN (-32768)
84 #define INT32_MIN (-2147483647 - 1)
85 #define INT64_MIN (-9223372036854775807LL - 1)
86 
87 #define INT8_MAX 127
88 #define INT16_MAX 32767
89 #define INT32_MAX 2147483647
90 #define INT64_MAX 9223372036854775807LL
91 
92 #define UINT8_MAX 0xff /* 255U */
93 #define UINT16_MAX 0xffff /* 65535U */
94 #define UINT32_MAX 0xffffffff /* 4294967295U */
95 #define UINT64_MAX 0xffffffffffffffffULL /* 18446744073709551615ULL */
96 
97 /* 7.18.2.2 Limits of minimum-width integer types */
98 #define INT_LEAST8_MIN INT8_MIN
99 #define INT_LEAST16_MIN INT16_MIN
100 #define INT_LEAST32_MIN INT32_MIN
101 #define INT_LEAST64_MIN INT64_MIN
102 
103 #define INT_LEAST8_MAX INT8_MAX
104 #define INT_LEAST16_MAX INT16_MAX
105 #define INT_LEAST32_MAX INT32_MAX
106 #define INT_LEAST64_MAX INT64_MAX
107 
108 #define UINT_LEAST8_MAX UINT8_MAX
109 #define UINT_LEAST16_MAX UINT16_MAX
110 #define UINT_LEAST32_MAX UINT32_MAX
111 #define UINT_LEAST64_MAX UINT64_MAX
112 
113 /* 7.18.2.3 Limits of fastest minimum-width integer types */
114 #define INT_FAST8_MIN INT8_MIN
115 #define INT_FAST16_MIN INT16_MIN
116 #define INT_FAST32_MIN INT32_MIN
117 #define INT_FAST64_MIN INT64_MIN
118 
119 #define INT_FAST8_MAX INT8_MAX
120 #define INT_FAST16_MAX INT16_MAX
121 #define INT_FAST32_MAX INT32_MAX
122 #define INT_FAST64_MAX INT64_MAX
123 
124 #define UINT_FAST8_MAX UINT8_MAX
125 #define UINT_FAST16_MAX UINT16_MAX
126 #define UINT_FAST32_MAX UINT32_MAX
127 #define UINT_FAST64_MAX UINT64_MAX
128 
129 /* 7.18.2.4 Limits of integer types capable of holding
130  object pointers */
131 #define INTPTR_MIN INT32_MIN
132 #define INTPTR_MAX INT32_MAX
133 #define UINTPTR_MAX UINT32_MAX
134 
135 /* 7.18.2.5 Limits of greatest-width integer types */
136 #define INTMAX_MIN INT64_MIN
137 #define INTMAX_MAX INT64_MAX
138 #define UINTMAX_MAX UINT64_MAX
139 
140 /* 7.18.3 Limits of other integer types */
141 #define PTRDIFF_MIN INT32_MIN
142 #define PTRDIFF_MAX INT32_MAX
143 
144 #define SIG_ATOMIC_MIN INT32_MIN
145 #define SIG_ATOMIC_MAX INT32_MAX
146 
147 #define SIZE_MAX UINT32_MAX
148 
149 #ifndef WCHAR_MIN /* also in wchar.h */
150 #define WCHAR_MIN 0
151 #define WCHAR_MAX 0xffff /* UINT16_MAX */
152 #endif
153 
154 /*
155  * wint_t is unsigned short for compatibility with MS runtime
156  */
157 #define WINT_MIN 0
158 #define WINT_MAX 0xffff /* UINT16_MAX */
159 
160 #endif /* !defined ( __cplusplus) || defined __STDC_LIMIT_MACROS */
161 
162 
163 /* 7.18.4 Macros for integer constants */
164 #if !defined ( __cplusplus) || defined (__STDC_CONSTANT_MACROS)
165 
166 /* 7.18.4.1 Macros for minimum-width integer constants
167 
168  Accoding to Douglas Gwyn <gwyn@arl.mil>:
169  "This spec was changed in ISO/IEC 9899:1999 TC1; in ISO/IEC
170  9899:1999 as initially published, the expansion was required
171  to be an integer constant of precisely matching type, which
172  is impossible to accomplish for the shorter types on most
173  platforms, because C99 provides no standard way to designate
174  an integer constant with width less than that of type int.
175  TC1 changed this to require just an integer constant
176  *expression* with *promoted* type."
177  */
178 
179 #define INT8_C(val) ((int8_t) + (val))
180 #define UINT8_C(val) ((uint8_t) + (val ## U))
181 #define INT16_C(val) ((int16_t) + (val))
182 #define UINT16_C(val) ((uint16_t) + (val ## U))
183 
184 #define INT32_C(val) val ## L
185 #define UINT32_C(val) val ## UL
186 #define INT64_C(val) val ## LL
187 #define UINT64_C(val) val ## ULL
188 
189 /* 7.18.4.2 Macros for greatest-width integer constants */
190 #define INTMAX_C(val) INT64_C(val)
191 #define UINTMAX_C(val) UINT64_C(val)
192 
193 #endif /* !defined ( __cplusplus) || defined __STDC_CONSTANT_MACROS */
194 
195 #endif
long long intmax_t
Definition: stdint.h:75
long long int_fast64_t
Definition: stdint.h:67
short int16_t
Definition: stdint.h:40
unsigned uint32_t
Definition: stdint.h:43
unsigned char uint_least8_t
Definition: stdint.h:49
long long int64_t
Definition: stdint.h:44
int int_least32_t
Definition: stdint.h:52
short int_least16_t
Definition: stdint.h:50
unsigned short uint16_t
Definition: stdint.h:41
int int_fast32_t
Definition: stdint.h:65
unsigned uintptr_t
Definition: stdint.h:72
unsigned char uint8_t
Definition: stdint.h:39
signed char int_least8_t
Definition: stdint.h:48
int intptr_t
Definition: stdint.h:71
char int_fast8_t
Definition: stdint.h:61
long long int_least64_t
Definition: stdint.h:54
unsigned int uint_fast32_t
Definition: stdint.h:66
unsigned long long uint64_t
Definition: stdint.h:45
signed char int8_t
Definition: stdint.h:38
unsigned short uint_least16_t
Definition: stdint.h:51
unsigned long long uint_least64_t
Definition: stdint.h:55
unsigned long long uint_fast64_t
Definition: stdint.h:68
unsigned long long uintmax_t
Definition: stdint.h:76
int int32_t
Definition: stdint.h:42
unsigned short uint_fast16_t
Definition: stdint.h:64
unsigned uint_least32_t
Definition: stdint.h:53
unsigned char uint_fast8_t
Definition: stdint.h:62
short int_fast16_t
Definition: stdint.h:63


bcap_core
Author(s): DENSO WAVE INCORPORATED
autogenerated on Mon Jun 10 2019 13:12:20