File tree Expand file tree Collapse file tree 5 files changed +110
-16
lines changed Expand file tree Collapse file tree 5 files changed +110
-16
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,4 @@ Implementation Status
19
19
strings
20
20
threads
21
21
time
22
+ uchar
Original file line number Diff line number Diff line change @@ -18,11 +18,15 @@ Macros
18
18
- POSIX.1-2024 Standard Section
19
19
* - ONCE_FLAG_INIT
20
20
-
21
- - 7.28.1.3
21
+ - 7.28.1
22
22
-
23
23
* - TSS_DTOR_ITERATIONS
24
24
-
25
- - 7.28.1.3
25
+ - 7.28.1
26
+ -
27
+ * - __STDC_NO_THREADS__
28
+ -
29
+ - 7.28.1
26
30
-
27
31
28
32
Functions
@@ -67,27 +71,27 @@ Functions
67
71
-
68
72
* - mtx_destroy
69
73
- |check |
70
- - 7.28.4.1
74
+ - 7.28.4.2
71
75
-
72
76
* - mtx_init
73
77
- |check |
74
- - 7.28.4.2
78
+ - 7.28.4.3
75
79
-
76
80
* - mtx_lock
77
81
- |check |
78
- - 7.28.4.3
82
+ - 7.28.4.4
79
83
-
80
84
* - mtx_timedlock
81
85
-
82
- - 7.28.4.4
86
+ - 7.28.4.5
83
87
-
84
88
* - mtx_trylock
85
89
-
86
- - 7.28.4.5
90
+ - 7.28.4.6
87
91
-
88
92
* - mtx_unlock
89
93
- |check |
90
- - 7.28.4.6
94
+ - 7.28.4.7
91
95
-
92
96
* - thrd_create
93
97
- |check |
Original file line number Diff line number Diff line change
1
+ .. include :: ../check.rst
2
+
3
+ =======
4
+ uchar.h
5
+ =======
6
+
7
+ Macros
8
+ ======
9
+
10
+ .. list-table ::
11
+ :widths: auto
12
+ :align: center
13
+ :header-rows: 1
14
+
15
+ * - Macro
16
+ - Implemented
17
+ - C23 Standard Section
18
+ - POSIX.1-2024 Standard Section
19
+ * - __STDC_VERSION_UCHAR_H__
20
+ -
21
+ - 7.30.1
22
+ -
23
+
24
+ Functions
25
+ =========
26
+
27
+ .. list-table ::
28
+ :widths: auto
29
+ :align: center
30
+ :header-rows: 1
31
+
32
+ * - Function
33
+ - Implemented
34
+ - C23 Standard Section
35
+ - POSIX.1-2024 Standard Section
36
+ * - c16rtomb
37
+ -
38
+ - 7.30.2.5
39
+ -
40
+ * - c32rtomb
41
+ -
42
+ - 7.30.2.7
43
+ -
44
+ * - c8rtomb
45
+ -
46
+ - 7.30.2.3
47
+ -
48
+ * - mbrtoc16
49
+ -
50
+ - 7.30.2.4
51
+ -
52
+ * - mbrtoc32
53
+ -
54
+ - 7.30.2.6
55
+ -
56
+ * - mbrtoc8
57
+ -
58
+ - 7.30.2.2
59
+ -
Original file line number Diff line number Diff line change 1
1
{
2
2
"macros" : {
3
+ "__STDC_NO_THREADS__" : {
4
+ "c-definition" : " 7.28.1"
5
+ },
3
6
"ONCE_FLAG_INIT" : {
4
- "c-definition" : " 7.28.1.3 "
7
+ "c-definition" : " 7.28.1"
5
8
},
6
9
"TSS_DTOR_ITERATIONS" : {
7
- "c-definition" : " 7.28.1.3 "
10
+ "c-definition" : " 7.28.1"
8
11
}
9
12
},
10
13
"functions" : {
30
33
"c-definition" : " 7.28.3.6"
31
34
},
32
35
"mtx_destroy" : {
33
- "c-definition" : " 7.28.4.1 "
36
+ "c-definition" : " 7.28.4.2 "
34
37
},
35
38
"mtx_init" : {
36
- "c-definition" : " 7.28.4.2 "
39
+ "c-definition" : " 7.28.4.3 "
37
40
},
38
41
"mtx_lock" : {
39
- "c-definition" : " 7.28.4.3 "
42
+ "c-definition" : " 7.28.4.4 "
40
43
},
41
44
"mtx_timedlock" : {
42
- "c-definition" : " 7.28.4.4 "
45
+ "c-definition" : " 7.28.4.5 "
43
46
},
44
47
"mtx_trylock" : {
45
- "c-definition" : " 7.28.4.5 "
48
+ "c-definition" : " 7.28.4.6 "
46
49
},
47
50
"mtx_unlock" : {
48
- "c-definition" : " 7.28.4.6 "
51
+ "c-definition" : " 7.28.4.7 "
49
52
},
50
53
"thrd_create" : {
51
54
"c-definition" : " 7.28.5.1"
Original file line number Diff line number Diff line change
1
+ {
2
+ "macros" : {
3
+ "__STDC_VERSION_UCHAR_H__" : {
4
+ "c-definition" : " 7.30.1"
5
+ }
6
+ },
7
+ "functions" : {
8
+ "mbrtoc8" : {
9
+ "c-definition" : " 7.30.2.2"
10
+ },
11
+ "c8rtomb" : {
12
+ "c-definition" : " 7.30.2.3"
13
+ },
14
+ "mbrtoc16" : {
15
+ "c-definition" : " 7.30.2.4"
16
+ },
17
+ "c16rtomb" : {
18
+ "c-definition" : " 7.30.2.5"
19
+ },
20
+ "mbrtoc32" : {
21
+ "c-definition" : " 7.30.2.6"
22
+ },
23
+ "c32rtomb" : {
24
+ "c-definition" : " 7.30.2.7"
25
+ }
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments