mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
25 lines
402 B
C
25 lines
402 B
C
#ifndef _LIMITS_H_
|
|
#define _LIMITS_H_
|
|
|
|
#define CHAR_BIT 8
|
|
|
|
#define SCHAR_MIN -128
|
|
#define SCHAR_MAX 127
|
|
#define UCHAR_MAX 255
|
|
|
|
#define SHRT_MIN -32768
|
|
#define SHRT_MAX 32767
|
|
#define USHRT_MAX 65535
|
|
|
|
#define INT_MIN -2147483648
|
|
#define INT_MAX 2147483647
|
|
#define UINT_MAX 4294967295
|
|
|
|
#define LONG_MIN -2147483648
|
|
#define LONG_MAX 2147483647
|
|
#define ULONG_MAX 4294967295
|
|
|
|
#define DBL_MANT_DIG 53
|
|
|
|
#endif
|