stdint.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. #if !defined __cplusplus || defined __STDC_LIMIT_MACROS
  33. #define INT8_MIN (-1-0x7f)
  34. #define INT16_MIN (-1-0x7fff)
  35. #define INT32_MIN (-1-0x7fffffff)
  36. #define INT64_MIN (-1-0x7fffffffffffffffLL)
  37. #define INT8_MAX (0x7f)
  38. #define INT16_MAX (0x7fff)
  39. #define INT32_MAX (0x7fffffff)
  40. #define INT64_MAX (0x7fffffffffffffffLL)
  41. #define UINT8_MAX (0xff)
  42. #define UINT16_MAX (0xffff)
  43. #define UINT32_MAX (0xffffffff)
  44. #define UINT64_MAX (0xffffffffffffffffULL)
  45. #define INT_LEAST8_MIN INT8_MIN
  46. #define INT_LEAST16_MIN INT16_MIN
  47. #define INT_LEAST32_MIN INT32_MIN
  48. #define INT_LEAST64_MIN INT64_MIN
  49. #define INT_LEAST8_MAX INT8_MAX
  50. #define INT_LEAST16_MAX INT16_MAX
  51. #define INT_LEAST32_MAX INT32_MAX
  52. #define INT_LEAST64_MAX INT64_MAX
  53. #define UINT_LEAST8_MAX UINT8_MAX
  54. #define UINT_LEAST16_MAX UINT16_MAX
  55. #define UINT_LEAST32_MAX UINT32_MAX
  56. #define UINT_LEAST64_MAX UINT64_MAX
  57. #undef WCHAR_MIN
  58. #undef WCHAR_MAX
  59. #undef WINT_MIN
  60. #undef WINT_MAX
  61. #define WCHAR_MIN INT32_MIN
  62. #define WCHAR_MAX INT32_MAX
  63. #define WINT_MIN INT32_MIN
  64. #define WINT_MAX INT32_MAX
  65. #define INTMAX_MIN INT64_MIN
  66. #define INTMAX_MAX INT64_MAX
  67. #define UINTMAX_MAX UINT64_MAX
  68. #include <bits/stdint.h>
  69. #endif
  70. #if !defined __cplusplus || defined __STDC_CONSTANT_MACROS
  71. #define INT8_C(c) c
  72. #define INT16_C(c) c
  73. #define INT32_C(c) c
  74. #define INT64_C(c) c ## LL
  75. #define UINT8_C(c) c ## U
  76. #define UINT16_C(c) c ## U
  77. #define UINT32_C(c) c ## U
  78. #define UINT64_C(c) c ## ULL
  79. #define INTMAX_C(c) c ## LL
  80. #define UINTMAX_C(c) c ## ULL
  81. #endif
  82. #endif