/* Copyright 1989, 1990, 1992 Digital Equipment Corporation All rights reserved. This software is furnished under a license and may be used and copied only in accordance with the terms of such license and with the inclusion of the above copyright notice. This software and any copies shall not be provided to any other person. No title to or ownership of the software is hereby transferred. The information in this software is subject to change without notice. DIGITAL assumes no responsibility for the use, functionality or reliability of its software on equipment which is not supplied by DIGITAL. limits.h Characteristics of Integral Types for the PDP-11. */ #ifndef __LIMITS_H #define __LIMITS_H /* Definitions : */ #define CHAR_BIT ( 8 ) #define SCHAR_MIN ( -128 ) #define SCHAR_MAX ( +127 ) #define UCHAR_MAX ( 255U ) #define CHAR_MIN ( -128 ) #define CHAR_MAX ( +127 ) #define MB_LEN_MAX ( 1 ) #define SHRT_MIN ( (-32767)-1 ) #define SHRT_MAX ( +32767 ) #define USHRT_MAX ( 65535U ) #define INT_MIN ( (-32767)-1 ) #define INT_MAX ( +32767 ) #define UINT_MAX ( 65535U ) #define LONG_MIN ( -2147483648L ) #define LONG_MAX ( +2147483647L ) #define ULONG_MAX ( 4294967295UL ) #endif