wcstombs()

This is a Hardware specific function. It is not implemented in the Compiler.

Syntax
  #include <stdlib.h>

  
  int wcstombs(char *s, const wchar_t *ws, size_t n);

  
Description

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.

Return

The number of wide characters converted.

See also

wctomb()