boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

limits.h (672B)


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