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::wctob(3) C++ Standard Libary std::wctob(3)

std::wctob - std::wctob


Defined in header <cwchar>
int wctob( std::wint_t c );


Narrows a wide character c if its multibyte character equivalent in the initial
shift state is a single byte.


This is typically possible for the characters from the ASCII character set, since
most multibyte encodings (such as UTF-8) use single bytes to encode those
characters.


c - wide character to narrow


EOF if c does not represent a multibyte character with length 1 in initial shift
state.


Otherwise, the single-byte representation of c as unsigned char converted to int

// Run this code


#include <clocale>
#include <cwchar>
#include <iostream>


void try_narrowing(wchar_t c)
{
int cn = std::wctob(c);
if(cn != EOF)
std::cout << '\'' << int(c) << "' narrowed to " << +cn << '\n';
else
std::cout << '\'' << int(c) << "' could not be narrowed\n";
}


int main()
{
std::setlocale(LC_ALL, "th_TH.utf8");
std::cout << std::hex << std::showbase << "In Thai UTF-8 locale:\n";
try_narrowing(L'a');
try_narrowing(L'๛');


std::setlocale(LC_ALL, "th_TH.tis620");
std::cout << "In Thai TIS-620 locale:\n";
try_narrowing(L'a');
try_narrowing(L'๛');
}


In Thai UTF-8 locale:
'0x61' narrowed to 0x61
'0xe5b' could not be narrowed
In Thai TIS-620 locale:
'0x61' narrowed to 0x61
'0xe5b' narrowed to 0xfb


btowc widens a single-byte narrow character to wide character, if possible
(function)
narrow narrows characters
(public member function of std::basic_ios<CharT,Traits>)
narrow invokes do_narrow
(public member function of std::ctype<CharT>)

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.