Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

How do I write a std::codecvt facet?

How do I write a std::codecvt facet? I'd like to write ones that go from UTF-16 to UTF-8, which go from UTF-16 to the systems current code page (windows, so CP_ACP), and to the system's OEM codepage ...
3
votes
3answers
274 views

Stumped with Unicode, Boost, C++, codecvts

In C++, I want to use Unicode to do things. So after falling down the rabbit hole of Unicode, I've managed to end up in a train wreck of confusion, headaches and locales. But in Boost I've had the ...
2
votes
1answer
139 views

What happens if I imbue basic_stream<char> with locale with codecvt_utf16<char> facet?

Is it specified what will happen if I imbue basic_stream<char> with locale with codecvt_utf16<char> facet? Basically, I use typedef wchar_t tchar; and typedef char tchar; to alter ...
2
votes
1answer
744 views

UTF-16 codecvt facet

Extending from this questions about locales And described in this question: What I really wanted to do was install a codecvt facet into the locale that understands UTF-16 files. I could write my own. ...
1
vote
1answer
28 views

Specializing codecvt: linker errors when third template argument is not std::mbstate_t

Given #include <locale> struct Q; struct R{ void operator()(Q*) { } }; class S : public std::codecvt<char, char, Q*> { } ; int main() { char *p; char *q; const char *r; ...
1
vote
1answer
20 views

Is there a codecvt decoding scenario where the destination buffer needs space for more than one internal character?

When using std::codecvt's in method to decode an external byte sequence to an internal char sequence, is there a situation where the destination buffer of internal chars needs space for more than one ...
0
votes
1answer
49 views

Using ICU to implement my own codecvt facet

I want to implement a codecvt facet using ICU to convert from any character encoding (that ICU supports) to UTF-8 internally. I'm aware that codecvt_byname exists and that it can be used to do part ...
0
votes
1answer
40 views

How to check if construction of a new codecvt_byname succeeded

Is there a standard way to check whether construction of a new std::codecvt_byname succeeded? I was experimenting with the following program: // cl /nologo /Fetest_codecvt_byname.exe /EHsc ...
0
votes
1answer
61 views

Wrong codecvt result in ViualStudio 2010

The following code prints "failed" to console: #include "stdafx.h" #include <locale> #include <memory> #include <string> #include <cstring> #include <iostream> int ...