mac-rom/Interfaces/CIncludes/Limits.h
Elliot Nunn 4325cdcc78 Bring in CubeE sources
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included.

The Tools directory, containing mostly junk, is also excluded.
2017-12-26 09:52:23 +08:00

38 lines
705 B
C

/*
Limits.h -- Sizes of integral types
Copyright Apple Computer,Inc. 1987, 1990-1991
All rights reserved.
This file is used in these builds: ROM System
Change History (most recent first):
<2> 8/8/91 JL Update copyright
To Do:
*/
#ifndef __LIMITS__
#define __LIMITS__
#define CHAR_BIT 8
#define CHAR_MAX 127
#define CHAR_MIN (-128)
#define MB_LEN_MAX 1
#define INT_MAX 2147483647
#define INT_MIN (-2147483648)
#define LONG_MAX 2147483647
#define LONG_MIN (-2147483648)
#define SCHAR_MAX 127
#define SCHAR_MIN (-128)
#define SHRT_MAX 32767
#define SHRT_MIN (-32768)
#define UCHAR_MAX 255U
#define UINT_MAX 4294967295U
#define ULONG_MAX 4294967295U
#define USHRT_MAX 65535
#endif