Skip to content

Commit d244a02

Browse files
update keys
1 parent fd35f88 commit d244a02

File tree

14 files changed

+521
-256
lines changed

14 files changed

+521
-256
lines changed

libc/utils/docgen/assert.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"c-definition": "7.2.1"
55
},
66
"assert": {
7-
"c-definition": "7.2.1"
7+
"c-definition": "7.2.1",
8+
"in-latest-posix": ""
89
}
910
}
1011
}

libc/utils/docgen/ctype.json

Lines changed: 70 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,102 @@
11
{
22
"functions": {
33
"isalnum": {
4-
"c-definition": "7.4.1.1"
4+
"c-definition": "7.4.1.1",
5+
"in-latest-posix": ""
6+
},
7+
"isalnum_l": {
8+
"in-latest-posix": ""
59
},
610
"isalpha": {
7-
"c-definition": "7.4.1.2"
11+
"c-definition": "7.4.1.2",
12+
"in-latest-posix": ""
13+
},
14+
"isalpha_l": {
15+
"in-latest-posix": ""
816
},
917
"isblank": {
10-
"c-definition": "7.4.1.3"
18+
"c-definition": "7.4.1.3",
19+
"in-latest-posix": ""
20+
},
21+
"isblank_l": {
22+
"in-latest-posix": ""
1123
},
1224
"iscntrl": {
13-
"c-definition": "7.4.1.4"
25+
"c-definition": "7.4.1.4",
26+
"in-latest-posix": ""
27+
},
28+
"iscntrl_l": {
29+
"in-latest-posix": ""
1430
},
1531
"isdigit": {
16-
"c-definition": "7.4.1.5"
32+
"c-definition": "7.4.1.5",
33+
"in-latest-posix": ""
34+
},
35+
"isdigit_l": {
36+
"in-latest-posix": ""
1737
},
1838
"isgraph": {
19-
"c-definition": "7.4.1.6"
39+
"c-definition": "7.4.1.6",
40+
"in-latest-posix": ""
41+
},
42+
"isgraph_l": {
43+
"in-latest-posix": ""
2044
},
2145
"islower": {
22-
"c-definition": "7.4.1.7"
46+
"c-definition": "7.4.1.7",
47+
"in-latest-posix": ""
48+
},
49+
"islower_l": {
50+
"in-latest-posix": ""
2351
},
2452
"isprint": {
25-
"c-definition": "7.4.1.8"
53+
"c-definition": "7.4.1.8",
54+
"in-latest-posix": ""
55+
},
56+
"isprint_l": {
57+
"in-latest-posix": ""
2658
},
2759
"ispunct": {
28-
"c-definition": "7.4.1.9"
60+
"c-definition": "7.4.1.9",
61+
"in-latest-posix": ""
62+
},
63+
"ispunct_l": {
64+
"in-latest-posix": ""
2965
},
3066
"isspace": {
31-
"c-definition": "7.4.1.10"
67+
"c-definition": "7.4.1.10",
68+
"in-latest-posix": ""
69+
},
70+
"isspace_l": {
71+
"in-latest-posix": ""
3272
},
3373
"isupper": {
34-
"c-definition": "7.4.1.11"
74+
"c-definition": "7.4.1.11",
75+
"in-latest-posix": ""
76+
},
77+
"isupper_l": {
78+
"in-latest-posix": ""
3579
},
3680
"isxdigit": {
37-
"c-definition": "7.4.1.12"
81+
"c-definition": "7.4.1.12",
82+
"in-latest-posix": ""
83+
},
84+
"isxdigit_l": {
85+
"in-latest-posix": ""
3886
},
3987
"tolower" : {
40-
"c-definition": "7.4.2.1"
88+
"c-definition": "7.4.2.1",
89+
"in-latest-posix": ""
90+
},
91+
"tolower_l" : {
92+
"in-latest-posix": ""
4193
},
4294
"toupper": {
43-
"c-definition": "7.4.2.2"
95+
"c-definition": "7.4.2.2",
96+
"in-latest-posix": ""
97+
},
98+
"toupper_l": {
99+
"in-latest-posix": ""
44100
}
45101
}
46102
}
47-

libc/utils/docgen/errno.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
{
22
"macros": {
33
"EDOM": {
4-
"c-definition": "7.5"
4+
"c-definition": "7.5",
5+
"in-latest-posix": ""
56
},
67
"EILSEQ": {
7-
"c-definition": "7.5"
8+
"c-definition": "7.5",
9+
"in-latest-posix": ""
810
},
911
"ERANGE": {
10-
"c-definition": "7.5"
12+
"c-definition": "7.5",
13+
"in-latest-posix": ""
1114
},
1215
"errno": {
13-
"c-definition": "7.5"
16+
"c-definition": "7.5",
17+
"in-latest-posix": ""
1418
}
1519
}
1620
}

libc/utils/docgen/fenv.json

Lines changed: 45 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,50 @@
44
"c-definition": "7.6.5"
55
},
66
"FE_DIVBYZERO": {
7-
"c-definition": "7.6.9"
7+
"c-definition": "7.6.9",
8+
"in-latest-posix": ""
89
},
910
"FE_INEXACT": {
10-
"c-definition": "7.6.9"
11+
"c-definition": "7.6.9",
12+
"in-latest-posix": ""
1113
},
1214
"FE_INVALID": {
13-
"c-definition": "7.6.9"
15+
"c-definition": "7.6.9",
16+
"in-latest-posix": ""
1417
},
1518
"FE_OVERFLOW": {
16-
"c-definition": "7.6.9"
19+
"c-definition": "7.6.9",
20+
"in-latest-posix": ""
1721
},
1822
"FE_UNDERFLOW": {
19-
"c-definition": "7.6.9"
23+
"c-definition": "7.6.9",
24+
"in-latest-posix": ""
2025
},
2126
"FE_ALL_EXCEPT": {
22-
"c-definition": "7.6.12"
27+
"c-definition": "7.6.12",
28+
"in-latest-posix": ""
2329
},
2430
"FE_DFL_MODE": {
2531
"c-definition": "7.6.11"
2632
},
27-
"FE_DOWNARD": {
28-
"c-definition": "7.6.13"
33+
"FE_DOWNWARD": {
34+
"c-definition": "7.6.13",
35+
"in-latest-posix": ""
2936
},
3037
"FE_TONEAREST": {
31-
"c-definition": "7.6.13"
38+
"c-definition": "7.6.13",
39+
"in-latest-posix": ""
3240
},
3341
"FE_TONEARESTFROMZERO": {
3442
"c-definition": "7.6.13"
3543
},
3644
"FE_TOWARDZERO": {
37-
"c-definition": "7.6.13"
45+
"c-definition": "7.6.13",
46+
"in-latest-posix": ""
3847
},
3948
"FE_UPWARD": {
40-
"c-definition": "7.6.13"
49+
"c-definition": "7.6.13",
50+
"in-latest-posix": ""
4151
},
4252
"FE_DEC_DOWNWARD": {
4353
"c-definition": "7.6.14"
@@ -55,36 +65,43 @@
5565
"c-definition": "7.6.14"
5666
},
5767
"FE_DFL_ENV": {
58-
"c-definition": "7.6.17"
68+
"c-definition": "7.6.17",
69+
"in-latest-posix": ""
5970
}
6071
},
6172
"functions": {
6273
"feclearexcept": {
63-
"c-definition": "7.6.4.1"
74+
"c-definition": "7.6.4.1",
75+
"in-latest-posix": ""
6476
},
6577
"fegetexceptflag": {
66-
"c-definition": "7.6.4.2"
78+
"c-definition": "7.6.4.2",
79+
"in-latest-posix": ""
6780
},
6881
"feraiseexcept": {
69-
"c-definition": "7.6.4.3"
82+
"c-definition": "7.6.4.3",
83+
"in-latest-posix": ""
7084
},
7185
"fesetexcept": {
7286
"c-definition": "7.6.4.4"
7387
},
7488
"fesetexceptflag": {
75-
"c-definition": "7.6.4.5"
89+
"c-definition": "7.6.4.5",
90+
"in-latest-posix": ""
7691
},
7792
"fetestexceptflag": {
7893
"c-definition": "7.6.4.6"
7994
},
8095
"fetestexcept": {
81-
"c-definition": "7.6.4.7"
96+
"c-definition": "7.6.4.7",
97+
"in-latest-posix": ""
8298
},
8399
"fegetmode": {
84100
"c-definition": "7.6.5.1"
85101
},
86102
"fegetround": {
87-
"c-definition": "7.6.5.2"
103+
"c-definition": "7.6.5.2",
104+
"in-latest-posix": ""
88105
},
89106
"fe_dec_getround": {
90107
"c-definition": "7.6.5.3"
@@ -93,22 +110,27 @@
93110
"c-definition": "7.6.5.4"
94111
},
95112
"fesetround": {
96-
"c-definition": "7.6.5.5"
113+
"c-definition": "7.6.5.5",
114+
"in-latest-posix": ""
97115
},
98116
"fe_dec_setround": {
99117
"c-definition": "7.6.5.6"
100118
},
101119
"fegetenv": {
102-
"c-definition": "7.6.6.1"
120+
"c-definition": "7.6.6.1",
121+
"in-latest-posix": ""
103122
},
104123
"feholdexcept": {
105-
"c-definition": "7.6.6.2"
124+
"c-definition": "7.6.6.2",
125+
"in-latest-posix": ""
106126
},
107127
"fesetenv": {
108-
"c-definition": "7.6.6.3"
128+
"c-definition": "7.6.6.3",
129+
"in-latest-posix": ""
109130
},
110131
"feupdateenv": {
111-
"c-definition": "7.6.6.4"
132+
"c-definition": "7.6.6.4",
133+
"in-latest-posix": ""
112134
}
113135
}
114136
}

0 commit comments

Comments
 (0)