forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc][docs] add c11 threads and uchar (llvm#119250)
FWICT, these were the newly added headers for c11.
- Loading branch information
1 parent
affad1b
commit 6c86210
Showing
5 changed files
with
110 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ Implementation Status | |
strings | ||
threads | ||
time | ||
uchar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
.. include:: ../check.rst | ||
|
||
======= | ||
uchar.h | ||
======= | ||
|
||
Macros | ||
====== | ||
|
||
.. list-table:: | ||
:widths: auto | ||
:align: center | ||
:header-rows: 1 | ||
|
||
* - Macro | ||
- Implemented | ||
- C23 Standard Section | ||
- POSIX.1-2024 Standard Section | ||
* - __STDC_VERSION_UCHAR_H__ | ||
- | ||
- 7.30.1 | ||
- | ||
|
||
Functions | ||
========= | ||
|
||
.. list-table:: | ||
:widths: auto | ||
:align: center | ||
:header-rows: 1 | ||
|
||
* - Function | ||
- Implemented | ||
- C23 Standard Section | ||
- POSIX.1-2024 Standard Section | ||
* - c16rtomb | ||
- | ||
- 7.30.2.5 | ||
- | ||
* - c32rtomb | ||
- | ||
- 7.30.2.7 | ||
- | ||
* - c8rtomb | ||
- | ||
- 7.30.2.3 | ||
- | ||
* - mbrtoc16 | ||
- | ||
- 7.30.2.4 | ||
- | ||
* - mbrtoc32 | ||
- | ||
- 7.30.2.6 | ||
- | ||
* - mbrtoc8 | ||
- | ||
- 7.30.2.2 | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"macros": { | ||
"__STDC_VERSION_UCHAR_H__": { | ||
"c-definition": "7.30.1" | ||
} | ||
}, | ||
"functions": { | ||
"mbrtoc8": { | ||
"c-definition": "7.30.2.2" | ||
}, | ||
"c8rtomb": { | ||
"c-definition": "7.30.2.3" | ||
}, | ||
"mbrtoc16": { | ||
"c-definition": "7.30.2.4" | ||
}, | ||
"c16rtomb": { | ||
"c-definition": "7.30.2.5" | ||
}, | ||
"mbrtoc32": { | ||
"c-definition": "7.30.2.6" | ||
}, | ||
"c32rtomb": { | ||
"c-definition": "7.30.2.7" | ||
} | ||
} | ||
} |