home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1999 February
/
MACPOWER-1999-02.ISO.7z
/
MACPOWER-1999-02.ISO
/
9902⁄AMUG
/
UTILITY
/
mac06-0.95.sit
/
mac06-0.95
/
usr
/
include
/
limits.h
< prev
next >
Wrap
Text File
|
1998-11-15
|
878b
|
38 lines
/* mac06ゥ1997,98 by HNS/DSITRI hns@computer.org
** limits.h
*/
#pragma once
#define ARG_MAX 2000
#define CHILD_MAX 10
#define LINK_MAX 10
#define MAX_CANON 256
#define MAX_INPUT 256
#define NAME_MAX 256
#define NGROUPS_MAX 0
#define OPEN_MAX 20
#define PATH_MAX
#define PIPE_BUF 512
#define SSIZE_MAX
#define STREAM_MAX 80
#define TZNAME_MAX
#define CHAR_BIT
#define CHAR_MIN ((char) -128)
#define CHAR_MAX ((char) 127)
#define INT_MIN ((int) -2147483648)
#define INT_MAX ((int) 2147483647)
#define LONG_MIN ((long) -2147483648)
#define LONG_MAX ((long) 2147483647)
#define MB_LEN_MAX
#define SCHAR_MIN CHAR_MIN
#define SCHAR_MAX CHAR_MAX
#define SHRT_MIN ((short) -32768)
#define SHRT_MAX ((short) 32767)
#define UCHAR_MAX ((unsigned char) -1)
#define UINT_MAX ((unsigned int) -1)
#define ULONG_MAX ((unsigned long) -1l)
#define USHRT_MAX ((unsigned short) -1)
/* EOF */