#include <stdlib.h> int wctomb(char *s, wchar_t wchar);
Convert a wide character to a multibyte character. The string s
must be at least MB_LEN_MAX
bytes long.
The number of characters stored.
ANSI, POSIX
char s[MB_LEN_MAX]; int mlen = wctomb(s, wc);
Go to the first, previous, next, last section, table of contents.