-
Notifications
You must be signed in to change notification settings - Fork 15.1k
[libc][cpio] Add cpio.h header. #123798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libc][cpio] Add cpio.h header. #123798
Changes from 4 commits
ed3453c
b207e43
9e75b3e
777e97e
36f0a3e
2c5b6aa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,6 +37,7 @@ if (SPHINX_FOUND) | |
| aio | ||
| arpa/inet | ||
| assert | ||
| cpio | ||
| ctype | ||
| errno | ||
| fenv | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ Implementation Status | |
| arpa/inet | ||
| assert | ||
| complex | ||
| cpio | ||
| ctype | ||
| errno | ||
| fenv | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,107 @@ | ||
| macros: | ||
| C_IRUSR: | ||
| c-definition: "Read by owner." | ||
| in-latest-posix: '' | ||
| value: "0000400" | ||
siya100 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| C_IWUSR: | ||
| c-definition: "Write by owner." | ||
| in-latest-posix: '' | ||
| value: "0000200" | ||
|
|
||
| C_IXUSR: | ||
| c-definition: "Execute by owner." | ||
| in-latest-posix: '' | ||
| value: "0000100" | ||
|
|
||
| C_IRGRP: | ||
| c-definition: "Read by group." | ||
| in-latest-posix: '' | ||
| value: "0000040" | ||
|
|
||
| C_IWGRP: | ||
| c-definition: "Write by group." | ||
| in-latest-posix: '' | ||
| value: "0000020" | ||
|
|
||
| C_IXGRP: | ||
| c-definition: "Execute by group." | ||
| in-latest-posix: '' | ||
nickdesaulniers marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| value: "0000010" | ||
|
|
||
| C_IROTH: | ||
| c-definition: "Read by others." | ||
| in-latest-posix: '' | ||
| value: "0000004" | ||
|
|
||
| C_IWOTH: | ||
| c-definition: "Write by others." | ||
| in-latest-posix: '' | ||
| value: "0000002" | ||
|
|
||
| C_IXOTH: | ||
| c-definition: "Execute by others." | ||
| in-latest-posix: '' | ||
| value: "0000001" | ||
|
|
||
| C_ISUID: | ||
| c-definition: "Set user ID." | ||
| in-latest-posix: '' | ||
| value: "0004000" | ||
|
|
||
| C_ISGID: | ||
| c-definition: "Set group ID." | ||
| in-latest-posix: '' | ||
| value: "0002000" | ||
|
|
||
| C_ISVTX: | ||
| c-definition: "Restricted deletion flag on directories." | ||
| in-latest-posix: '' | ||
| value: "0001000" | ||
|
|
||
| C_ISDIR: | ||
| c-definition: "Directory." | ||
| in-latest-posix: '' | ||
| value: "0040000" | ||
|
|
||
| C_ISFIFO: | ||
| c-definition: "FIFO." | ||
| in-latest-posix: '' | ||
| value: "0010000" | ||
|
|
||
| C_ISREG: | ||
| c-definition: "Regular file." | ||
| in-latest-posix: '' | ||
| value: "0100000" | ||
|
|
||
| C_ISBLK: | ||
| c-definition: "Block special." | ||
| in-latest-posix: '' | ||
| value: "0060000" | ||
|
|
||
| C_ISCHR: | ||
| c-definition: "Character special." | ||
| in-latest-posix: '' | ||
| value: "0020000" | ||
|
|
||
| C_ISCTG: | ||
| c-definition: "Reserved." | ||
| in-latest-posix: '' | ||
siya100 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| value: "0110000" | ||
|
|
||
| C_ISLNK: | ||
| c-definition: "Symbolic link." | ||
| in-latest-posix: '' | ||
| value: "0120000" | ||
|
|
||
| C_ISSOCK: | ||
| c-definition: "Socket." | ||
| in-latest-posix: '' | ||
| value: "0140000" | ||
|
|
||
| MAGIC: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should that be here? I came to this review because that user posted a comment that looked suspiciously like spam and saw they had contributed to LLVM in this PR. From one of their comments, it looks like this user may be contributing AI-generated stuff. There's nothing wrong with that in theory, but I'd advise doing careful review of these diffs. If you think I'm being needlessly careful here, feel free to let me know.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/cpio.h.html
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, thanks, I missed that! |
||
| c-definition: "The magic string for cpio files." | ||
| in-latest-posix: '' | ||
| value: '"070707"' | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.