wcstombs()

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

Return

The number of wide characters converted.

See also

wctomb()