XINU
limits.h
Go to the documentation of this file.
1 
6 /* Embedded Xinu, Copyright (C) 2009. All rights reserved. */
7 
8 #ifndef _LIMITS_H_
9 #define _LIMITS_H_
10 
11 #define CHAR_BIT 8
12 #define CHAR_MAX 127
13 #define CHAR_MIN (-128)
14 #define SCHAR_MAX 127
15 #define SCHAR_MIN (-128)
16 #define UCHAR_MAX 255
18 #define INT_MAX 2147483647
19 #define INT_MIN (-INT_MAX-1)
20 #define UINT_MAX (2U*INT_MAX+1)
22 #define LONG_MAX 2147483647
23 #define LONG_MIN (-LONG_MAX-1)
24 #define ULONG_MAX (2UL*LONG_MAX+1)
26 #define SHRT_MAX 32767
27 #define SHRT_MIN (-SHRT_MAX-1)
28 #define USHRT_MAX 65535
30 #endif /* _LIMITS_H_ */