tmp/tmpr46j44a9/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<cwctype>` synopsis <a id="cwctype.syn">[[cwctype.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std {
|
| 5 |
+
using wint_t = see below;
|
| 6 |
+
using wctrans_t = see below;
|
| 7 |
+
using wctype_t = see below;
|
| 8 |
+
|
| 9 |
+
int iswalnum(wint_t wc);
|
| 10 |
+
int iswalpha(wint_t wc);
|
| 11 |
+
int iswblank(wint_t wc);
|
| 12 |
+
int iswcntrl(wint_t wc);
|
| 13 |
+
int iswdigit(wint_t wc);
|
| 14 |
+
int iswgraph(wint_t wc);
|
| 15 |
+
int iswlower(wint_t wc);
|
| 16 |
+
int iswprint(wint_t wc);
|
| 17 |
+
int iswpunct(wint_t wc);
|
| 18 |
+
int iswspace(wint_t wc);
|
| 19 |
+
int iswupper(wint_t wc);
|
| 20 |
+
int iswxdigit(wint_t wc);
|
| 21 |
+
int iswctype(wint_t wc, wctype_t desc);
|
| 22 |
+
wctype_t wctype(const char* property);
|
| 23 |
+
wint_t towlower(wint_t wc);
|
| 24 |
+
wint_t towupper(wint_t wc);
|
| 25 |
+
wint_t towctrans(wint_t wc, wctrans_t desc);
|
| 26 |
+
wctrans_t wctrans(const char* property);
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
#define WEOF see below
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
The contents and meaning of the header `<cwctype>` are the same as the C
|
| 33 |
+
standard library header `<wctype.h>`.
|
| 34 |
+
|
| 35 |
+
ISO C 7.30
|
| 36 |
+
|