Subversion Repositories tendra.SVN

Rev

Blame | Last modification | View Log | RSS feed

#ifndef _MACH_MACHLIMITS_H_
#define _MACH_MACHLIMITS_H_

#define CHAR_BIT        8
#define SCHAR_MIN       (-128)
#define SCHAR_MAX        127
#define CHAR_MAX         127
#define CHAR_MIN        (-128)
#define SHRT_MAX         32767
#define SHRT_MIN        (-32768)
#define INT_MAX          2147483647
#define INT_MIN         (-INT_MAX-1)
#define LONG_MAX         9223372036854775807L
#define LONG_MIN        (-LONG_MAX-1)
#define UCHAR_MAX       255U
#define USHRT_MAX       65535U
#define UINT_MAX        4294967295U
#define ULONG_MAX       18446744073709551615UL
#define MB_LEN_MAX      4

#endif