vote up 0 vote down star

Hello,

Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X?

Kat

flag
In C, C++ or something else? – Éric Malenfant Oct 30 at 14:19

1 Answer

vote up 0 vote down

Use wcstombs:

size_t wcstombs(char *dest, const wchar_t *src, size_t n);

Make sure you have your locale set appropriately.

link|flag
It took me two reads to recognize that it is wcs to mbs, and has nothing to do with tombs :) – OregonGhost Oct 30 at 14:45

Your Answer

Get an OpenID
or

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