From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/string%2Fwide%2Fwctype.html | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 devdocs/c/string%2Fwide%2Fwctype.html (limited to 'devdocs/c/string%2Fwide%2Fwctype.html') diff --git a/devdocs/c/string%2Fwide%2Fwctype.html b/devdocs/c/string%2Fwide%2Fwctype.html new file mode 100644 index 00000000..a0891b98 --- /dev/null +++ b/devdocs/c/string%2Fwide%2Fwctype.html @@ -0,0 +1,36 @@ +

wctype

Defined in header <wctype.h>
wctype_t wctype( const char* str );
+
(since C95)

Constructs a value of type wctype_t that describes a LC_CTYPE category of wide character classification. It may be one of the standard classification categories, or a locale-specific category, such as "jkanji".

+

Parameters

+ +
str - C string holding the name of the desired category

The following values of str are supported in all C locales:

+ + + + + + + + + + + + +
value of str effect
"alnum" identifies the category used by iswalnum
"alpha" identifies the category used by iswalpha
"blank" identifies the category used by iswblank (C99)
"cntrl" identifies the category used by iswcntrl
"digit" identifies the category used by iswdigit
"graph" identifies the category used by iswgraph
"lower" identifies the category used by iswlower
"print" identifies the category used by iswprint
"space" identifies the category used by iswspace
"upper" identifies the category used by iswupper
"xdigit" identifies the category used by iswxdigit

Return value

wctype_t object suitable for use with iswctype to classify wide characters according to the named category of the current C locale or zero if str does not name a category supported by the current C locale.

+

References

See also

+ +
+
(C95)
classifies a wide character according to the specified LC_CTYPE category
(function)
C++ documentation for wctype
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/string/wide/wctype +

+
-- cgit v1.2.3