Windows C API for UTF8 to 1252
Posted
by Paul
on Stack Overflow
See other posts from Stack Overflow
or by Paul
Published on 2010-02-17T18:13:09Z
Indexed on
2010/04/17
3:03 UTC
Read the original article
Hit count: 443
I'm familiar with WideCharToMultiByte and MultiByteToWideChar conversions and could use these to do something like:
UTF8 -> UTF16 -> 1252
I know that iconv will do what I need, but does anybody know of any MS libs that will allow this in a single call?
I should probably just pull in the iconv library, but am feeling lazy.
Thanks
© Stack Overflow or respective owner