home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-387-Vol-3of3.iso
/
e
/
emxdev8f.zip
/
LIMITS.H
< prev
next >
Wrap
Text File
|
1992-11-18
|
777b
|
32 lines
/* limits.h (emx+gcc) */
#if !defined (_LIMITS_H)
#define _LIMITS_H
#define CHAR_BIT 8
#define SCHAR_MIN (-128)
#define SCHAR_MAX 127
#define UCHAR_MAX 0xff
#if defined (__CHAR_UNSIGNED__)
#define CHAR_MIN 0
#define CHAR_MAX UCHAR_MAX
#else
#define CHAR_MIN SCHAR_MIN
#define CHAR_MAX SCHAR_MAX
#endif
#define MB_LEN_MAX 1
#define SHRT_MIN (-32768)
#define SHRT_MAX 32767
#define USHRT_MAX 0xffff
#define LONG_MIN ((long)0x80000000)
#define LONG_MAX 0x7fffffff
#define ULONG_MAX 0xffffffff
#define INT_MIN LONG_MIN
#define INT_MAX LONG_MAX
#define UINT_MAX ULONG_MAX
#define WORD_BIT 32
#define USI_MAX UINT_MAX
#endif /* !defined (_LIMITS_H) */