This is a Hardware specific function. It is not implemented in the 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 character in s, and returns the number of wide characters converted.
The number of wide characters converted.