C Language and Libraries Help (clang.hlp) (
Table of Contents;
Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
wcstombs, _fwcstombs
◄Description► ◄Example► ◄Up► ◄Contents► ◄Index► ◄Back►
─────Run-Time Library───────────────────────────────────────────────────────
Include: <stdlib.h>
Syntax: size_t wcstombs( char *mbstr, const wchar_t *wcstr,
size_t count );
size_t _fwcstombs( char __far *mbstr,
const wchar_t __far *wcstr, size_t count );
Returns: the number of converted multibyte characters, excluding the
NULL character, if successful; -1 cast to size_t, if not.
See also: mblen, mbstowcs, mbtowc, wchar_t, wctomb, MB_CUR_MAX,
MB_LEN_MAX
-♦-