stdint.h 6.2 KB

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