ae2f_docs
Loading...
Searching...
No Matches
limits.width.auto.h
1#ifndef SCHAR_WIDTH
2#define SCHAR_WIDTH (1 << 3)
3#endif
4
5#ifndef UCHAR_WIDTH
6#define UCHAR_WIDTH (1 << 3)
7#endif
8
9#ifndef SHRT_WIDTH
10#define SHRT_WIDTH (2 << 3)
11#endif
12
13#ifndef USHRT_WIDTH
14#define USHRT_WIDTH (2 << 3)
15#endif
16
17#ifndef INT_WIDTH
18#define INT_WIDTH (4 << 3)
19#endif
20
21#ifndef UINT_WIDTH
22#define UINT_WIDTH (4 << 3)
23#endif
24
25#ifndef LONG_WIDTH
26#define LONG_WIDTH (8 << 3)
27#endif
28
29#ifndef ULONG_WIDTH
30#define ULONG_WIDTH (8 << 3)
31#endif
32
33#ifndef LLONG_WIDTH
34#define LLONG_WIDTH (8 << 3)
35#endif
36
37#ifndef ULLONG_WIDTH
38#define ULLONG_WIDTH (8 << 3)
39#endif
#define __ae2f_lvcheck_c(v)