It has to work with a C program so it has to be a winapi c call

link|improve this question

61% accept rate
feedback

3 Answers

up vote 8 down vote accepted

That would be WideCharToMultiByte and MultiByteToWideChar.

link|improve this answer
Are there examples on how to use it? – shawn Sep 27 '11 at 11:44
1  
@shawn, you can find some example in this question. Those function are very commonly used, so you'll have no problem finding other examples on the web. They both take about a million arguments, but for simple cases you can use the defaults. – eran Sep 27 '11 at 12:00
feedback

All 128 ASCII characters convert to the unicode code point with the same value (see ASCII in unicode glossary). Conversion, in C (have no idea about the other tags in your question), is as easy as assignment: unicodevalue = asciivalue; or asciivalue = unicodevalue; though you probably want to make sure that unicodevalue in the last staetement represents an ASCII character before converting.

link|improve this answer
+1, although I'm guessing OP meant ansi rather than ascii. – avakar Sep 27 '11 at 11:54
feedback

Here is a simple solution which comes along with CRT ; consider this if you are using Visual studio.

mbstowcs and wcstombs the links have sample C++ code too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.