GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::wctype(3) C++ Standard Libary std::wctype(3)

std::wctype - std::wctype


Defined in header <cwctype>
std::wctype_t wctype( const char* str );


Constructs a value of type std::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".


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 std::iswalnum
"alpha" identifies the category used by std::iswalpha
"blank" identifies the category used by std::iswblank (C++11)
"cntrl" identifies the category used by std::iswcntrl
"digit" identifies the category used by std::iswdigit
"graph" identifies the category used by std::iswgraph
"lower" identifies the category used by std::iswlower
"print" identifies the category used by std::iswprint
"space" identifies the category used by std::iswspace
"upper" identifies the category used by std::iswupper
"xdigit" identifies the category used by std::iswxdigit


std::wctype_t object suitable for use with std::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.


iswctype classifies a wide character according to the specified LC_CTYPE category
(function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.