luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

limits.h (564B)


      1 #ifndef _LIMITS_H
      2 #define _LIMITS_H
      3 
      4 #define CHAR_BIT 8
      5 #define SCHAR_MIN (-128)
      6 #define SCHAR_MAX 127
      7 #define UCHAR_MAX 255
      8 #define CHAR_MIN SCHAR_MIN
      9 #define CHAR_MAX SCHAR_MAX
     10 #define SHRT_MIN (-32768)
     11 #define SHRT_MAX 32767
     12 #define USHRT_MAX 65535
     13 #define INT_MIN (-2147483648)
     14 #define INT_MAX 2147483647
     15 #define UINT_MAX 4294967295U
     16 #define LONG_MIN (-2147483648L)
     17 #define LONG_MAX 2147483647L
     18 #define ULONG_MAX 4294967295UL
     19 #define LLONG_MIN (-9223372036854775808LL)
     20 #define LLONG_MAX 9223372036854775807LL
     21 #define ULLONG_MAX 18446744073709551615ULL
     22 
     23 #endif