/* tag: Tom Lord Tue Dec  4 14:41:29 2001 (limits.h)
 */
/* limits.h -
 *
 ****************************************************************
 * Copyright (C) 2000 Tom Lord
 * 
 * See the file "COPYING" for further information about
 * the copyright and warranty status of this work.
 */

#ifndef INCLUDE__OS__LIMITS_H
#define INCLUDE__OS__LIMITS_H

/*
 * macro		>=
 *
 * CHAR_BIT		8
 * SCHAR_MIN		-127
 * SCHAR_MAX		127
 * UCHAR_MAX		255
 * CHAR_MIN		SCHAR_MIN or 0
 * CHAR_MAX		SCHAR_MAX or UCHAR_MAX
 * MB_LEN_MAX		1				-- not used in hackerlab
 * SHRT_MIN		-32767
 * SHRT_MAX		32767
 * USHRT_MAX		65535
 * INT_MIN		-32767
 * INT_MAX		-32767
 * UINT_MAX		65535
 * LONG_MIN		-2147483647
 * LONG_MAX		-2147483647
 * ULONG_MAX		4294967295
 * 
 */

#include <limits.h>


/* automatically generated __STDC__ prototypes */
#endif  /* INCLUDE__OS__LIMITS_H */


syntax highlighted by Code2HTML, v. 0.9.1