File tree Expand file tree Collapse file tree 3 files changed +97
-3
lines changed Expand file tree Collapse file tree 3 files changed +97
-3
lines changed Original file line number Diff line number Diff line change
1
+ ctype.h Functions
2
+ =================
3
+
4
+ .. list-table ::
5
+ :widths: auto
6
+ :align: center
7
+ :header-rows: 1
8
+
9
+ * - Function
10
+ - Implemented
11
+ - Standard
12
+ * - isalnum
13
+ - |check |
14
+ - 7.4.1.1
15
+ * - isalpha
16
+ - |check |
17
+ - 7.4.1.2
18
+ * - isblank
19
+ - |check |
20
+ - 7.4.1.3
21
+ * - iscntrl
22
+ - |check |
23
+ - 7.4.1.4
24
+ * - isdigit
25
+ - |check |
26
+ - 7.4.1.5
27
+ * - isgraph
28
+ - |check |
29
+ - 7.4.1.6
30
+ * - islower
31
+ - |check |
32
+ - 7.4.1.7
33
+ * - isprint
34
+ - |check |
35
+ - 7.4.1.8
36
+ * - ispunct
37
+ - |check |
38
+ - 7.4.1.9
39
+ * - isspace
40
+ - |check |
41
+ - 7.4.1.10
42
+ * - isupper
43
+ - |check |
44
+ - 7.4.1.11
45
+ * - isxdigit
46
+ - |check |
47
+ - 7.4.1.12
48
+ * - tolower
49
+ - |check |
50
+ - 7.4.2.1
51
+ * - toupper
52
+ - |check |
53
+ - 7.4.2.2
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ stages there is no ABI stability in any form.
69
69
fenv
70
70
libc_search
71
71
c23
72
+ ctype
72
73
73
74
.. toctree ::
74
75
:hidden:
Original file line number Diff line number Diff line change 1
1
{
2
2
"functions" : {
3
- "isalnum" : null ,
4
- "isalpha" : null ,
5
- "isblank" : null
3
+ "isalnum" : {
4
+ "defined" : " 7.4.1.1"
5
+ },
6
+ "isalpha" : {
7
+ "defined" : " 7.4.1.2"
8
+ },
9
+ "isblank" : {
10
+ "defined" : " 7.4.1.3"
11
+ },
12
+ "iscntrl" : {
13
+ "defined" : " 7.4.1.4"
14
+ },
15
+ "isdigit" : {
16
+ "defined" : " 7.4.1.5"
17
+ },
18
+ "isgraph" : {
19
+ "defined" : " 7.4.1.6"
20
+ },
21
+ "islower" : {
22
+ "defined" : " 7.4.1.7"
23
+ },
24
+ "isprint" : {
25
+ "defined" : " 7.4.1.8"
26
+ },
27
+ "ispunct" : {
28
+ "defined" : " 7.4.1.9"
29
+ },
30
+ "isspace" : {
31
+ "defined" : " 7.4.1.10"
32
+ },
33
+ "isupper" : {
34
+ "defined" : " 7.4.1.11"
35
+ },
36
+ "isxdigit" : {
37
+ "defined" : " 7.4.1.12"
38
+ },
39
+ "tolower" : {
40
+ "defined" : " 7.4.2.1"
41
+ },
42
+ "toupper" : {
43
+ "defined" : " 7.4.2.2"
44
+ }
6
45
}
7
46
}
47
+
You can’t perform that action at this time.
0 commit comments