stdint.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #ifndef _STDINT_H
  2. #define _STDINT_H
  3. #define __NEED_int8_t
  4. #define __NEED_int16_t
  5. #define __NEED_int32_t
  6. #define __NEED_int64_t
  7. #define __NEED_uint8_t
  8. #define __NEED_uint16_t
  9. #define __NEED_uint32_t
  10. #define __NEED_uint64_t
  11. #define __NEED_int_least8_t
  12. #define __NEED_int_least16_t
  13. #define __NEED_int_least32_t
  14. #define __NEED_int_least64_t
  15. #define __NEED_uint_least8_t
  16. #define __NEED_uint_least16_t
  17. #define __NEED_uint_least32_t
  18. #define __NEED_uint_least64_t
  19. #define __NEED_int_fast8_t
  20. #define __NEED_int_fast16_t
  21. #define __NEED_int_fast32_t
  22. #define __NEED_int_fast64_t
  23. #define __NEED_uint_fast8_t
  24. #define __NEED_uint_fast16_t
  25. #define __NEED_uint_fast32_t
  26. #define __NEED_uint_fast64_t
  27. #define __NEED_intptr_t
  28. #define __NEED_uintptr_t
  29. #define __NEED_intmax_t
  30. #define __NEED_uintmax_t
  31. #include <bits/alltypes.h>
  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. typedef uint8_t uint_least8_t;
  37. typedef uint16_t uint_least16_t;
  38. typedef uint32_t uint_least32_t;
  39. typedef uint64_t uint_least64_t;
  40. #if !defined __cplusplus || defined __STDC_LIMIT_MACROS
  41. #define INT8_MIN (-1-0x7f)
  42. #define INT16_MIN (-1-0x7fff)
  43. #define INT32_MIN (-1-0x7fffffff)
  44. #define INT64_MIN (-1-0x7fffffffffffffffLL)
  45. #define INT8_MAX (0x7f)
  46. #define INT16_MAX (0x7fff)
  47. #define INT32_MAX (0x7fffffff)
  48. #define INT64_MAX (0x7fffffffffffffffLL)
  49. #define UINT8_MAX (0xff)
  50. #define UINT16_MAX (0xffff)
  51. #define UINT32_MAX (0xffffffff)
  52. #define UINT64_MAX (0xffffffffffffffffULL)
  53. #define INT_LEAST8_MIN INT8_MIN
  54. #define INT_LEAST16_MIN INT16_MIN
  55. #define INT_LEAST32_MIN INT32_MIN
  56. #define INT_LEAST64_MIN INT64_MIN
  57. #define INT_LEAST8_MAX INT8_MAX
  58. #define INT_LEAST16_MAX INT16_MAX
  59. #define INT_LEAST32_MAX INT32_MAX
  60. #define INT_LEAST64_MAX INT64_MAX
  61. #define UINT_LEAST8_MAX UINT8_MAX
  62. #define UINT_LEAST16_MAX UINT16_MAX
  63. #define UINT_LEAST32_MAX UINT32_MAX
  64. #define UINT_LEAST64_MAX UINT64_MAX
  65. #undef WCHAR_MIN
  66. #undef WCHAR_MAX
  67. #undef WINT_MIN
  68. #undef WINT_MAX
  69. #define WCHAR_MIN INT32_MIN
  70. #define WCHAR_MAX INT32_MAX
  71. #define WINT_MIN INT32_MIN
  72. #define WINT_MAX INT32_MAX
  73. #define INTMAX_MIN INT64_MIN
  74. #define INTMAX_MAX INT64_MAX
  75. #define UINTMAX_MAX UINT64_MAX
  76. #include <bits/stdint.h>
  77. #endif
  78. #if !defined __cplusplus || defined __STDC_CONSTANT_MACROS
  79. #define INT8_C(c) c
  80. #define INT16_C(c) c
  81. #define INT32_C(c) c
  82. #define INT64_C(c) c ## LL
  83. #define UINT8_C(c) c ## U
  84. #define UINT16_C(c) c ## U
  85. #define UINT32_C(c) c ## U
  86. #define UINT64_C(c) c ## ULL
  87. #define INTMAX_C(c) c ## LL
  88. #define UINTMAX_C(c) c ## ULL
  89. #endif
  90. #endif