This function is Hardware-specific implementation. It is not implemented in this Compiler.
#include <stdlib.h>
int wcstombs(char *s, const wchar_t *ws, size_t n);
wcstombs() converts the first n wide character codes in ws to multi-byte characters, stores them in s, and returns the number of wide characters converted.
The number of wide characters converted.