Tagged Questions

widechar is a generic name for character sets wider than ASCII

learn more… | top users | synonyms

9
votes
3answers
1k views

Why does the Java char primitive take up 2 bytes of memory?

Is there any reason why Java char primitive data type is 2 bytes unlike C which is 1 byte? Thanks
5
votes
2answers
92 views

WideChar display issue on Windows 7

I am developing a little application. The captions (text displayed on the Labels) with WideChars (Greek letters) are correct under Vista and Windows7 in almost every case, but in some cases (on some ...
4
votes
5answers
812 views

WideCharToMultiByte() vs. wcstombs()

What is the difference between WideCharToMultiByte() and wcstombs() When to use which one?
4
votes
2answers
1k views

What is the difference between WideChar and AnsiChar?

I'm upgrading some ancient (from 2003) Delphi code to Delphi Architect XE and I'm running into a few problems. I am getting a number of errors where there are incompatible types. These errors don't ...
4
votes
4answers
779 views

“Incompatible pointer type” compiler warning for 4th argument of qsort

I'm trying to use the standard library's qsort to sort an array of wide characters: wchar_t a = L'a'; wchar_t a1 = L'ä'; wchar_t b = L'z'; wchar_t chararray[] = {b, a, a1}; length = ...
2
votes
2answers
67 views

integer, printf: is there a way to write an integer as a wide char to console without locale.h?

suppose I have a Unicode codepoint c (a uint32). Is there a way to print this integer to console (as a wide character) without using locale.h or wchar.h? Thanks.
2
votes
4answers
961 views

Windows API: ANSI and Wide-Character Strings — Is it UTF8 or ASCII? UTF-16 or UCS-2 LE?

I'm not quite pro with encodings, but here's what I think I know (though it may be wrong): ASCII is a 7-bit, fixed-length encoding, with the characters you can find in ASCII charts. UTF8 is an ...
2
votes
2answers
511 views

C++: wide characters outputting incorrectly?

My code is basically this: wstring japan = L"日本"; wstring message = L"Welcome! Japan is "; message += japan; wprintf(message.c_str()); I'm wishing to use wide strings but I do not know how ...
1
vote
2answers
141 views

Converting Japanese characters from wide characacter to multibyte using API WideChartoMultibyte gives '????'

In my MFC application I am reading Japanese characters from string table then converting it into multibyte using following code WCHAR wBuf[1024]; int rc; rc = LoadStringW(hInstance, iResourceID, ...
1
vote
1answer
64 views

Testing wchar_t* for convertable characters

I'm working on talking to a library that handles strings as wchar_t arrays. I need to convert these to char arrays so that I can hand them over to Python (using SWIG and Python's PyString_FromString ...
1
vote
3answers
135 views

What's the difference between struct __stat64 and struct _stati64 on WIN32?

I'm working on some code that needs to run on every version of windows since WIN2000 and also needs to work with wide file paths. I need to call some variant of stat to get the file length. The file ...
1
vote
1answer
2k views

Convert Char into AnsiChar or WideChar (Delphi)

I'm upgrading a very old (10+ years) application to the latest Delphi XE. There are a number of errors I keep getting like Incompatible types: 'WideChar' and 'AnsiChar' I have been just casting ...
1
vote
1answer
184 views

wide version of __FUNCTION__ on linux

is there a way i can print __FUNCTION__ as a wide character on linux? the trick with the WIDEN doesn't work for me, the gcc compiler prints: error: ?L_FUNCTION_? was not declared in this scope any ...
1
vote
2answers
583 views

WideCharToMultiByte problem

I have the lovely functions from my previous question, which work fine if I do this: wstring temp; wcin >> temp; string whatever( toUTF8(getSomeWString()) ); // store whatever, copy, but do ...
1
vote
1answer
416 views

How to cast wchar_t into int for displaying the code point?

I have a simple function in my program, when I was wanting to mess around with unicode and do stuff with it. In this function, I wished to display the code value of the character the user entered. It ...
1
vote
2answers
517 views

C/C++ I18N mbstowcs question

I am working on internationalizing the input for a C/C++ application. I have currently hit an issue with converting from a multi-byte string to wide character string. The code needs to be cross ...
0
votes
1answer
45 views

Widechar sorting and loading from file

I'm currently trying to solve the problem when I need to load rows from the file and then sort them in the right order. If I manually assign lettes to the array of wint_t and then sort them, ...
0
votes
1answer
84 views

Can't assign wide char into wide char field.

I have been given this school project. I have to alphabetically sort list of items by Czech rules. Before I dig deeper, I have decided to test it on a 16 by 16 matrix so I did this: typedef struct { ...
0
votes
2answers
190 views

win32 api - MultiByteToWideChar and WideCharToMultiByte question

Do I need to free the strings I get from those functions? Or maybe the system keeps track of them. Same question goes for GetCommandLine().
0
votes
1answer
69 views

How to declare an widechar data type in MySQL

When I reading a C++ manual, it describe wchar_t as this, wchar_t Wide character - 2 or 4 bytes 1 wide character It let me think about how to store wchart_t kind of data(Like Chinese ...
0
votes
1answer
128 views

wctomb chokes on per mille symbol (‰)

I am trying to print out a bunch of unit labels; some of them contain Greek characters, some have other funny code points. I traced it back to the wctomb fuctions not knowing what to do with e.g. ...
0
votes
1answer
210 views

.net SqlBulkCopy with Unicode Chars

i posted this on forums.asp.net but didn't get much help... i have a csv file that needs to be imported to sql server the file includes Unicode characters, so i saved it in notepad as Unicode now ...
0
votes
2answers
1k views

_T( ) macro changes for UNICODE character data

I have UNICODE application where in we use _T(x) which is defined as follows. #if defined(_UNICODE) #define _T(x) L ##x #else #define _T(x) x #endif I understand that L gets defined to wchar_t, ...
0
votes
1answer
388 views

Using Wide Character Constants with clang Gets “extraneous characters in wide character constant ignored” Error

I recently decided to switch to clang from gcc and I’m getting the following warning for my use of wide character constants: "extraneous characters in wide character constant ignored". Here is the ...
0
votes
1answer
179 views

How to test if a string has a certain unicode char?

Supose you have a command line executable that receives arguments. This executalbe is widechar ready and you want to test if one of this arguments starts with an HYPHEN case in which its an option: ...
0
votes
4answers
2k views

C++, WCHAR[] to std::cout and comparision

I need to put WCHAR[] to std::cout ... It is a part of PWLAN_CONNECTION_NOTIFICATION_DATA passed from Native Wifi API callback. I tried simply std::cout << var; but it prints out the numeric ...