tmp/tmpw0oztzie/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<cuchar>` synopsis <a id="cuchar.syn">[[cuchar.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std {
|
| 5 |
+
using mbstate_t = see below;
|
| 6 |
+
using size_t = see [support.types.layout];
|
| 7 |
+
|
| 8 |
+
size_t mbrtoc16(char16_t* pc16, const char* s, size_t n, mbstate_t* ps);
|
| 9 |
+
size_t c16rtomb(char* s, char16_t c16, mbstate_t* ps);
|
| 10 |
+
size_t mbrtoc32(char32_t* pc32, const char* s, size_t n, mbstate_t* ps);
|
| 11 |
+
size_t c32rtomb(char* s, char32_t c32, mbstate_t* ps);
|
| 12 |
+
}
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
The contents and meaning of the header `<cuchar>` are the same as the C
|
| 16 |
+
standard library header `<uchar.h>`, except that it does not declare
|
| 17 |
+
types `char16_t` nor `char32_t`.
|
| 18 |
+
|
| 19 |
+
ISO C 7.28
|
| 20 |
+
|