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

Kat

link|improve this question

25% accept rate
In C, C++ or something else? – Éric Malenfant Oct 30 '09 at 14:19
feedback

1 Answer

Use wcstombs:

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

Make sure you have your locale set appropriately.

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

Your Answer

 
or
required, but never shown

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