stdint.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /****************************************************************************
  2. Copyright (c) 2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *****************************************************************************
  6. 2011 Qualcomm Atheros, Inc.
  7. ****************************************************************************/
  8. /*====================================================================*
  9. *
  10. * stdint.h - substitute stdint.h file for Windows;
  11. *
  12. * this is an important POSIX header that Microsoft ommits;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier.qca.qualcomm.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef STDINT_HEADER
  19. #define STDINT_HEADER
  20. /*====================================================================*
  21. * system header files;
  22. *--------------------------------------------------------------------*/
  23. #include <limits.h>
  24. /*====================================================================*
  25. * variable types;
  26. *--------------------------------------------------------------------*/
  27. #ifdef _MSC_VER
  28. typedef __int8 int8_t;
  29. typedef __int16 int16_t;
  30. typedef __int32 int32_t;
  31. typedef __int64 int64_t;
  32. typedef unsigned __int8 uint8_t;
  33. typedef unsigned __int16 uint16_t;
  34. typedef unsigned __int32 uint32_t;
  35. typedef unsigned __int64 uint64_t;
  36. typedef long off_t;
  37. #if _MSC_VER > 1900
  38. typedef signed char int_least8_t;
  39. typedef short int_least16_t;
  40. typedef int int_least32_t;
  41. typedef long long int_least64_t;
  42. typedef unsigned char uint_least8_t;
  43. typedef unsigned short uint_least16_t;
  44. typedef unsigned int uint_least32_t;
  45. typedef unsigned long long uint_least64_t;
  46. typedef signed char int_fast8_t;
  47. typedef int int_fast16_t;
  48. typedef int int_fast32_t;
  49. typedef long long int_fast64_t;
  50. typedef unsigned char uint_fast8_t;
  51. typedef unsigned int uint_fast16_t;
  52. typedef unsigned int uint_fast32_t;
  53. typedef unsigned long long uint_fast64_t;
  54. typedef long long intmax_t;
  55. typedef unsigned long long uintmax_t;
  56. #endif
  57. #endif
  58. /*====================================================================*
  59. *
  60. *--------------------------------------------------------------------*/
  61. #if defined (WIN32)
  62. #define UINT32_MAX (uint32_t)(-1)
  63. #endif
  64. /*====================================================================*
  65. *
  66. *--------------------------------------------------------------------*/
  67. #endif