php_stdint.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Michael Wallner <mike@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_STDINT_H
  19. #define PHP_STDINT_H
  20. /* C99 requires these for C++ to get the definitions
  21. * of INT64_MAX and other macros used by Zend/zend_long.h
  22. * C11 drops this requirement, so these effectively
  23. * just backport that piece of behavior.
  24. *
  25. * These defines are placed here instead of
  26. * with the include below, because sys/types
  27. * and inttypes may include stdint themselves.
  28. * And these definitions MUST come first.
  29. */
  30. #ifdef __cplusplus
  31. # ifndef __STDC_LIMIT_MACROS
  32. # define __STDC_LIMIT_MACROS
  33. # endif
  34. # ifndef __STDC_CONSTANT_MACROS
  35. # define __STDC_CONSTANT_MACROS
  36. # endif
  37. # ifndef __STDC_FORMAT_MACROS
  38. # define __STDC_FORMAT_MACROS
  39. # endif
  40. #endif
  41. #if defined(_MSC_VER)
  42. /* Make sure the regular stdint.h wasn't included already and prevent it to be
  43. included afterwards. Though if some other library needs some stuff from
  44. stdint.h included afterwards and misses it, we'd have to extend ours. On
  45. the other hand, if stdint.h was included before, some conflicts might
  46. happen so we'd likewise have to fix ours. */
  47. # if !defined(_STDINT)
  48. # define _STDINT
  49. # include "win32/php_stdint.h"
  50. # include "win32/php_inttypes.h"
  51. # endif
  52. # define HAVE_INT8_T 1
  53. # define HAVE_UINT8_T 1
  54. # define HAVE_INT16_T 1
  55. # define HAVE_UINT16_T 1
  56. # define HAVE_INT32_T 1
  57. # define HAVE_UINT32_T 1
  58. # define HAVE_INT64_T 1
  59. # define HAVE_UINT64_T 1
  60. #else
  61. #include "php_config.h"
  62. #if HAVE_SYS_TYPES_H
  63. # include <sys/types.h>
  64. #endif
  65. #if HAVE_INTTYPES_H
  66. # include <inttypes.h>
  67. #endif
  68. #if HAVE_STDINT_H
  69. # include <stdint.h>
  70. #endif
  71. #ifndef HAVE_INT8_T
  72. # ifdef HAVE_INT8
  73. typedef int8 int8_t;
  74. # else
  75. typedef signed char int8_t;
  76. # endif
  77. #endif
  78. #ifndef INT8_C
  79. # define INT8_C(c) c
  80. #endif
  81. #ifndef HAVE_UINT8_T
  82. # ifdef HAVE_UINT8
  83. typedef uint8 uint8_t
  84. # elif HAVE_U_INT8_T
  85. typedef u_int8_t uint8_t;
  86. # else
  87. typedef unsigned char uint8_t;
  88. # endif
  89. #endif
  90. #ifndef UINT8_C
  91. # define UINT8_C(c) c
  92. #endif
  93. #ifndef HAVE_INT16_T
  94. # ifdef HAVE_INT16
  95. typedef int16 int16_t;
  96. # elif SIZEOF_SHORT >= 2
  97. typedef signed short int16_t;
  98. # else
  99. # error "No suitable 16bit integer type found"
  100. # endif
  101. #endif
  102. #ifndef INT16_C
  103. # define INT16_C(c) c
  104. #endif
  105. #ifndef HAVE_UINT16_T
  106. # ifdef HAVE_UINT16
  107. typedef uint16 uint16_t
  108. # elif HAVE_U_INT16_T
  109. typedef u_int16_t uint16_t;
  110. # elif SIZEOF_SHORT >= 2
  111. typedef unsigned short uint16_t;
  112. # else
  113. # error "No suitable 16bit integer type found"
  114. # endif
  115. #endif
  116. #ifndef UINT16_C
  117. # define UINT16_C(c) c
  118. #endif
  119. #ifndef HAVE_INT32_T
  120. # ifdef HAVE_INT32
  121. typedef int32 int32_t;
  122. # elif SIZEOF_INT >= 4
  123. typedef int int32_t;
  124. # elif SIZEOF_LONG >= 4
  125. typedef long int32_t;
  126. # else
  127. # error "No suitable 32bit integer type found"
  128. # endif
  129. #endif
  130. #ifndef INT32_C
  131. # define INT32_C(c) c
  132. #endif
  133. #ifndef HAVE_UINT32_T
  134. # ifdef HAVE_UINT32
  135. typedef uint32 uint32_t
  136. # elif HAVE_U_INT32_T
  137. typedef u_int32_t uint32_t;
  138. # elif SIZEOF_INT >= 4
  139. typedef unsigned int uint32_t;
  140. # elif SIZEOF_LONG >= 4
  141. typedef unsigned long uint32_t;
  142. # else
  143. # error "No suitable 32bit integer type found"
  144. # endif
  145. #endif
  146. #ifndef UINT32_C
  147. # define UINT32_C(c) c ## U
  148. #endif
  149. #ifndef HAVE_INT64_T
  150. # ifdef HAVE_INT64
  151. typedef int64 int64_t;
  152. # elif SIZEOF_INT >= 8
  153. typedef int int64_t;
  154. # elif SIZEOF_LONG >= 8
  155. typedef long int64_t;
  156. # elif SIZEOF_LONG_LONG >= 8
  157. typedef long long int64_t;
  158. # else
  159. # error "No suitable 64bit integer type found"
  160. # endif
  161. #endif
  162. #ifndef INT64_C
  163. # if SIZEOF_INT >= 8
  164. # define INT64_C(c) c
  165. # elif SIZEOF_LONG >= 8
  166. # define INT64_C(c) c ## L
  167. # elif SIZEOF_LONG_LONG >= 8
  168. # define INT64_C(c) c ## LL
  169. # endif
  170. #endif
  171. #ifndef HAVE_UINT64_T
  172. # ifdef HAVE_UINT64
  173. typedef uint64 uint64_t
  174. # elif HAVE_U_INT64_T
  175. typedef u_int64_t uint64_t;
  176. # elif SIZEOF_INT >= 8
  177. typedef unsigned int uint64_t;
  178. # elif SIZEOF_LONG >= 8
  179. typedef unsigned long uint64_t;
  180. # elif SIZEOF_LONG_LONG >= 8
  181. typedef unsigned long long uint64_t;
  182. # else
  183. # error "No suitable 64bit integer type found"
  184. # endif
  185. #endif
  186. #ifndef UINT64_C
  187. # if SIZEOF_INT >= 8
  188. # define UINT64_C(c) c ## U
  189. # elif SIZEOF_LONG >= 8
  190. # define UINT64_C(c) c ## UL
  191. # elif SIZEOF_LONG_LONG >= 8
  192. # define UINT64_C(c) c ## ULL
  193. # endif
  194. #endif
  195. #endif /* !PHP_WIN32 */
  196. #endif /* PHP_STDINT_H */
  197. /*
  198. * Local variables:
  199. * tab-width: 4
  200. * c-basic-offset: 4
  201. * End:
  202. * vim600: sw=4 ts=4 fdm=marker
  203. * vim<600: sw=4 ts=4
  204. */