blob: 4243c6d9f3e392ac3dedcee42dc3176d867d008a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <limits.h>
#if defined __LP32__ || defined __ILP32__ || defined __LLP64__
#define ULONG_MAX (4294967295UL)
#elif defined __ILP64__ || defined __LP64__
#define ULONG_MAX (18446744073709551615UL)
#endif
/** unsigned long maximum **/
/***
is the maximum value representable as a TYPE(unsigned long int).
***/
/*
VALUE_MIN(4294967295)
*/
/*
STDC(1)
*/
|