limits.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*****************************************************************************/
  2. /* limits.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1993-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _LIMITS_H_
  38. #define _LIMITS_H_
  39. #pragma diag_push
  40. #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */
  41. #define CHAR_BIT 8 /* NUMBER OF BITS IN TYPE CHAR */
  42. #define SCHAR_MIN (-SCHAR_MAX-1) /* MIN VALUE FOR SIGNED CHAR */
  43. #define SCHAR_MAX 127 /* MAX VALUE FOR SIGNED CHAR */
  44. #define UCHAR_MAX 255 /* MAX VALUE FOR UNSIGNED CHAR */
  45. #define CHAR_MIN (SCHAR_MIN) /* MIN VALUE FOR PLAIN CHAR */
  46. #define CHAR_MAX (SCHAR_MAX) /* MAX VALUE FOR PLAIN CHAR */
  47. #define MB_LEN_MAX 1 /* MAX # BYTES IN MULTI-BYTE */
  48. #define SHRT_MIN (-SHRT_MAX-1) /* MIN VALUE FOR SHORT */
  49. #define SHRT_MAX 32767 /* MAX VALUE FOR SHORT */
  50. #define USHRT_MAX 65535 /* MAX VALUE FOR UNSIGNED SHORT */
  51. #define INT_MIN (-INT_MAX-1) /* MIN VALUE FOR INT */
  52. #define INT_MAX 2147483647 /* MAX VALUE FOR INT */
  53. #define UINT_MAX 4294967295U /* MAX VALUE FOR UNSIGNED INT */
  54. #if defined(__TMS320C6X__) && !defined(__C6X_MIGRATION__) && !defined(__TI_32BIT_LONG__)
  55. #define LONG_MIN (-LONG_MAX-1) /* MIN VALUE FOR LONG */
  56. #define LONG_MAX 549755813887 /* MAX VALUE FOR LONG */
  57. #define ULONG_MAX 1099511627775U /* MAX VALUE FOR UNSIGNED LONG */
  58. #else
  59. #define LONG_MIN (-LONG_MAX-1) /* MIN VALUE FOR LONG */
  60. #define LONG_MAX 2147483647 /* MAX VALUE FOR LONG */
  61. #define ULONG_MAX 4294967295U /* MAX VALUE FOR UNSIGNED LONG */
  62. #endif
  63. #define INT40_T_MIN (-INT40_T_MAX-1) /* MIN VALUE FOR __INT40_T */
  64. #define INT40_T_MAX 549755813887I40 /* MAX VALUE FOR __INT40_T */
  65. #define UINT40_T_MAX 1099511627775UI40 /* MAX VALUE FOR UNSIGNED __INT40_T */
  66. #define LLONG_MIN (-LLONG_MAX-1) /* MIN VALUE FOR LONG LONG */
  67. #define LLONG_MAX 9223372036854775807 /* MAX VALUE FOR LONG LONG */
  68. #define ULLONG_MAX 18446744073709551615U /* MAX VALUE FOR UNSIGNED LONG LONG */
  69. #pragma diag_pop
  70. #endif /* #ifndef _LIMITS_H_ */
  71. #pragma diag_push
  72. /* using declarations must occur outside header guard to support including both
  73. C and C++-wrapped version of header; see _CPP_STYLE_HEADER check */
  74. /* this code is for C++ mode only and thus also not relevant for MISRA */
  75. #pragma CHECK_MISRA("-19.15")
  76. #pragma diag_pop