stdint.i 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* -----------------------------------------------------------------------------
  2. * stdint.i
  3. *
  4. * SWIG library file for ISO C99 types: 7.18 Integer types <stdint.h>
  5. * ----------------------------------------------------------------------------- */
  6. %{
  7. #include <stdint.h> // Use the C99 official header
  8. %}
  9. %include <swigarch.i>
  10. /* Exact integral types. */
  11. /* Signed. */
  12. typedef signed char int8_t;
  13. typedef short int int16_t;
  14. typedef int int32_t;
  15. #if defined(SWIGWORDSIZE64)
  16. typedef long int int64_t;
  17. #else
  18. typedef long long int int64_t;
  19. #endif
  20. /* Unsigned. */
  21. typedef unsigned char uint8_t;
  22. typedef unsigned short int uint16_t;
  23. typedef unsigned int uint32_t;
  24. #if defined(SWIGWORDSIZE64)
  25. typedef unsigned long int uint64_t;
  26. #else
  27. typedef unsigned long long int uint64_t;
  28. #endif
  29. /* Small types. */
  30. /* Signed. */
  31. typedef signed char int_least8_t;
  32. typedef short int int_least16_t;
  33. typedef int int_least32_t;
  34. #if defined(SWIGWORDSIZE64)
  35. typedef long int int_least64_t;
  36. #else
  37. typedef long long int int_least64_t;
  38. #endif
  39. /* Unsigned. */
  40. typedef unsigned char uint_least8_t;
  41. typedef unsigned short int uint_least16_t;
  42. typedef unsigned int uint_least32_t;
  43. #if defined(SWIGWORDSIZE64)
  44. typedef unsigned long int uint_least64_t;
  45. #else
  46. typedef unsigned long long int uint_least64_t;
  47. #endif
  48. /* Fast types. */
  49. /* Signed. */
  50. typedef signed char int_fast8_t;
  51. #if defined(SWIGWORDSIZE64)
  52. typedef long int int_fast16_t;
  53. typedef long int int_fast32_t;
  54. typedef long int int_fast64_t;
  55. #else
  56. typedef int int_fast16_t;
  57. typedef int int_fast32_t;
  58. typedef long long int int_fast64_t;
  59. #endif
  60. /* Unsigned. */
  61. typedef unsigned char uint_fast8_t;
  62. #if defined(SWIGWORDSIZE64)
  63. typedef unsigned long int uint_fast16_t;
  64. typedef unsigned long int uint_fast32_t;
  65. typedef unsigned long int uint_fast64_t;
  66. #else
  67. typedef unsigned int uint_fast16_t;
  68. typedef unsigned int uint_fast32_t;
  69. typedef unsigned long long int uint_fast64_t;
  70. #endif
  71. /* Types for `void *' pointers. */
  72. #if defined(SWIGWORDSIZE64)
  73. typedef long int intptr_t;
  74. typedef unsigned long int uintptr_t;
  75. #else
  76. typedef int intptr_t;
  77. typedef unsigned int uintptr_t;
  78. #endif
  79. /* Largest integral types. */
  80. #if defined(SWIGWORDSIZE64)
  81. typedef long int intmax_t;
  82. typedef unsigned long int uintmax_t;
  83. #else
  84. typedef long long int intmax_t;
  85. typedef unsigned long long int uintmax_t;
  86. #endif