2000-07-22 19:03:03 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* limits.h */
|
2000-07-22 19:03:03 +00:00
|
|
|
/* */
|
2013-05-09 11:56:54 +00:00
|
|
|
/* Sizes of integer types */
|
2000-07-22 19:03:03 +00:00
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* */
|
2002-10-06 18:59:08 +00:00
|
|
|
/* (C) 1998-2002 Ullrich von Bassewitz */
|
2000-07-22 19:03:03 +00:00
|
|
|
/* Wacholderweg 14 */
|
|
|
|
/* D-70597 Stuttgart */
|
|
|
|
/* EMail: uz@musoftware.de */
|
|
|
|
/* */
|
|
|
|
/* */
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
|
|
/* arising from the use of this software. */
|
|
|
|
/* */
|
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
/* */
|
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
|
|
/* appreciated but is not required. */
|
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
/* distribution. */
|
|
|
|
/* */
|
|
|
|
/*****************************************************************************/
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _LIMITS_H
|
|
|
|
#define _LIMITS_H
|
|
|
|
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define CHAR_BIT 8
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define SCHAR_MIN ((signed char) 0x80)
|
|
|
|
#define SCHAR_MAX 127
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define UCHAR_MAX 255
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define CHAR_MIN 0
|
|
|
|
#define CHAR_MAX 255
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define SHRT_MIN ((short) 0x8000)
|
|
|
|
#define SHRT_MAX 32767
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define USHRT_MAX 65535U
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define INT_MIN ((int) 0x8000)
|
|
|
|
#define INT_MAX 32767
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define UINT_MAX 65535U
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define LONG_MAX 2147483647L
|
|
|
|
#define LONG_MIN ((long) 0x80000000)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
#define ULONG_MAX 4294967295UL
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2022-05-08 16:49:48 +00:00
|
|
|
#if __CC65_STD__ >= __CC65_STD_CC65__
|
2021-06-10 13:48:21 +00:00
|
|
|
/* These defines that are platform dependent */
|
2022-05-08 16:49:48 +00:00
|
|
|
/* FILENAME_MAX in stdlib.h is defined as the same value as PATH_MAX */
|
2021-06-10 13:48:21 +00:00
|
|
|
#if defined(__APPLE2__)
|
|
|
|
# define PATH_MAX (64+1)
|
|
|
|
#elif defined(__ATARI__)
|
|
|
|
# define PATH_MAX (63+1)
|
2021-06-10 14:06:37 +00:00
|
|
|
#elif defined(__CBM__)
|
2021-06-10 14:17:43 +00:00
|
|
|
# define PATH_MAX (255) /* should be 256+1, see libsrc/common/_cmd.s why it's not */
|
2021-06-10 13:48:21 +00:00
|
|
|
#elif defined(__LUNIX__)
|
|
|
|
# define PATH_MAX (80+1)
|
|
|
|
#elif defined(__TELESTRAT__)
|
|
|
|
# define PATH_MAX (50+1)
|
|
|
|
#else
|
|
|
|
# define PATH_MAX (16+1)
|
|
|
|
#endif
|
2022-05-08 16:49:48 +00:00
|
|
|
#endif /* __CC65_STD__ >= __CC65_STD_CC65__ */
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
/* End of limits.h */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|