From Jason Turner

[climits.syn]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmplht2qagj/{from.md → to.md} +33 -0
tmp/tmplht2qagj/{from.md → to.md} RENAMED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Header `<climits>` synopsis <a id="climits.syn">[[climits.syn]]</a>
2
+
3
+ ``` cpp
4
+ #define CHAR_BIT see below
5
+ #define SCHAR_MIN see below
6
+ #define SCHAR_MAX see below
7
+ #define UCHAR_MAX see below
8
+ #define CHAR_MIN see below
9
+ #define CHAR_MAX see below
10
+ #define MB_LEN_MAX see below
11
+ #define SHRT_MIN see below
12
+ #define SHRT_MAX see below
13
+ #define USHRT_MAX see below
14
+ #define INT_MIN see below
15
+ #define INT_MAX see below
16
+ #define UINT_MAX see below
17
+ #define LONG_MIN see below
18
+ #define LONG_MAX see below
19
+ #define ULONG_MAX see below
20
+ #define LLONG_MIN see below
21
+ #define LLONG_MAX see below
22
+ #define ULLONG_MAX see below
23
+ ```
24
+
25
+ The header `<climits>` defines all macros the same as the C standard
26
+ library header `<limits.h>`.
27
+
28
+ [*Note 1*: The types of the constants defined by macros in `<climits>`
29
+ are not required to match the types to which the macros
30
+ refer. — *end note*]
31
+
32
+ ISO C 5.2.4.2.1
33
+