
#ifndef LIMITS_H
#define LIMITS_H

#define	SCHAR_MAX	127		/* max of a "signed char" */
#define	UCHAR_MAX	255		/* max of an "unsigned char" */
#define	CHAR_MAX	SCHAR_MAX	/* max of a "char" */
#define	USHRT_MAX	65535		/* max of "unsigned short" */
#define	LONG_MAX	2147483647L	/* max of a "long int" */
#define	ULONG_MAX	4294967295UL	/* max of an "unsigned long" */

#endif /* LIMITS_H */
