Skip to content

Commit d398c0c

Browse files
siya100siya
andauthored
[libc][cpio] Add cpio.h header. (#123798)
[libc][docs] add cpio to documentation and include related functi… These changes ensure that the cpio header is documented properly with respect to the issue (#122006 ). **Changes:** 1. **cpio.yaml**: Created a new YAML file for cpio with functions and related macros. 2. **CMakeLists.txt**: Added cpio to the documentation directories. 3. **index.rst**: Included `cpio` in the documentation index. --------- Co-authored-by: siya <[email protected]>
1 parent 1b1270f commit d398c0c

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

libc/docs/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ if (SPHINX_FOUND)
3737
aio
3838
arpa/inet
3939
assert
40+
cpio
4041
ctype
4142
errno
4243
fenv

libc/docs/headers/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Implementation Status
88
arpa/inet
99
assert
1010
complex
11+
cpio
1112
ctype
1213
errno
1314
fenv

libc/utils/docgen/cpio.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
macros:
2+
C_IRUSR:
3+
in-latest-posix: ''
4+
C_IWUSR:
5+
in-latest-posix: ''
6+
C_IXUSR:
7+
in-latest-posix: ''
8+
C_IRGRP:
9+
in-latest-posix: ''
10+
C_IWGRP:
11+
in-latest-posix: ''
12+
C_IXGRP:
13+
in-latest-posix: ''
14+
C_IROTH:
15+
in-latest-posix: ''
16+
C_IWOTH:
17+
in-latest-posix: ''
18+
C_IXOTH:
19+
in-latest-posix: ''
20+
C_ISUID:
21+
in-latest-posix: ''
22+
C_ISGID:
23+
in-latest-posix: ''
24+
C_ISVTX:
25+
in-latest-posix: ''
26+
C_ISDIR:
27+
in-latest-posix: ''
28+
C_ISFIFO:
29+
in-latest-posix: ''
30+
C_ISREG:
31+
in-latest-posix: ''
32+
C_ISBLK:
33+
in-latest-posix: ''
34+
C_ISCHR:
35+
in-latest-posix: ''
36+
C_ISCTG:
37+
in-latest-posix: ''
38+
C_ISLNK:
39+
in-latest-posix: ''
40+
C_ISSOCK:
41+
in-latest-posix: ''
42+
MAGIC:
43+
in-latest-posix: ''
44+

0 commit comments

Comments
 (0)