NAME
wwccssrrttoommbbss, wwccssnnrrttoommbbss, wwccssrrttoommbbssll, wwccssnnrrttoommbbssll - convert a wide-char-
acter string to a character string (restartable) LLIIBBRRAARRYYStandard C Library (libc, -lc)
SYNOPSIS
##iinncclluuddee <
sizet wwccssrrttoommbbss(char * restrict dst, const wchart ** restrict src, sizet len, mbstatet * restrict ps); sizet wwccssnnrrttoommbbss(char * restrict dst, const wchart ** restrict src, sizet nwc, sizet len, mbstatet * restrict ps);> ##iinncclluuddee <
sizet wwccssrrttoommbbssll(char * restrict dst, const wchart ** restrict src, sizet len, mbstatet * restrict ps, localet loc); sizet wwccssnnrrttoommbbssll(char * restrict dst, const wchart ** restrict src, sizet nwc, sizet len, mbstatet * restrict ps, localet loc);> DESCRIPTION
The wwccssrrttoommbbss() function converts a string of wide characters indirectly pointed to by src to a corresponding multibyte character string stored in the array pointed to by dst. No more than len bytes are written to dst. If dst is NULL, no characters are stored. If dst is not NULL, the pointer pointed to by src is updated to point to the character after the one that conversion stopped at. If conversion stops because a null character is encountered, *src is set to NULL. The mbstatet argument, ps, is used to keep track of the shift state. If it is NULL, wwccssrrttoommbbss() uses an internal, static mbstatet object, which is initialized to the initial conversion state at program startup. The wwccssnnrrttoommbbss() function behaves identically to wwccssrrttoommbbss(), except that conversion stops after reading at most nwc characters from the buffer pointed to by src. While the wwccssrrttoommbbss() and wwccssnnrrttoommbbss() functions use the current locale, the wwccssrrttoommbbssll() and wwccssnnrrttoommbbssll() functions may be passed locales directly. See xlocale(3) for more information.RETURN VALUES
The wwccssrrttoommbbss() and wwccssnnrrttoommbbss() functions return the number of bytes stored in the array pointed to by dst (not including any terminatingnull), if successful, otherwise it returns (sizet)-1.
EERRRROORRSS The wwccssrrttoommbbss() and wwccssnnrrttoommbbss() functions will fail if: [EILSEQ] An invalid wide character was encountered. [EINVAL] The conversion state is invalid.SEE ALSO
mbsrtowcs(3), wcrtomb(3), wcstombs(3), xlocale(3) STANDARDS The wwccssrrttoommbbss() function conforms to ISO/IEC 9899:1999 (``ISO C99''). The wwccssnnrrttoommbbss() function is an extension to the standard. BSD July 21, 2004 BSD