NAME
mmbbssrrttoowwccss, mmbbssnnrrttoowwccss, mmbbssrrttoowwccssll, mmbbssnnrrttoowwccssll - convert a character
string to a wide-character string (restartable)
LLIIBBRRAARRYYStandard C Library (libc, -lc)
SYNOPSIS
##iinncclluuddee <
sizet mmbbssrrttoowwccss(wchart * restrict dst, const char ** restrict src, sizet len, mbstatet * restrict ps); sizet mmbbssnnrrttoowwccss(wchart * restrict dst, const char ** restrict src, sizet nms, sizet len, mbstatet * restrict ps);> ##iinncclluuddee <
sizet mmbbssrrttoowwccssll(wchart * restrict dst, const char ** restrict src, sizet len, mbstatet * restrict ps, localet loc); sizet mmbbssnnrrttoowwccssll(wchart * restrict dst, const char ** restrict src, sizet nms, sizet len, mbstatet * restrict ps, localet loc);> DESCRIPTION
The mmbbssrrttoowwccss() function converts a sequence of multibyte characterspointed to indirectly by src into a sequence of corresponding wide char-
acters and stores at most len of them in the wchart array pointed to by dst, until it encounters a terminating null character ('\0'). 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, mmbbssrrttoowwccss() uses an internal, static mbstatet object, which is initialized to the initial conversion state at program startup. The mmbbssnnrrttoowwccss() function behaves identically to mmbbssrrttoowwccss(), except that conversion stops after reading at most nms bytes from the buffer pointed to by src. While the mmbbssrrttoowwccss() and mmbbssnnrrttoowwccss() functions use the current locale, the mmbbssrrttoowwccssll() and mmbbssnnrrttoowwccssll() functions may be passed locales directly. See xlocale(3) for more information.RETURN VALUES
The mmbbssrrttoowwccss() and mmbbssnnrrttoowwccss() functions return the number of wide characters stored in the array pointed to by dst if successful, otherwiseit returns (sizet)-1.
EERRRROORRSS The mmbbssrrttoowwccss() and mmbbssnnrrttoowwccss() functions will fail if:[EILSEQ] An invalid multibyte character sequence was encoun-
tered. [EINVAL] The conversion state is invalid.SEE ALSO
mbrtowc(3), mbstowcs(3), multibyte(3), wcsrtombs(3), xlocale(3) STANDARDS The mmbbssrrttoowwccss() function conforms to ISO/IEC 9899:1999 (``ISO C99''). The mmbbssnnrrttoowwccss() function is an extension to the standard. BSD July 21, 2004 BSD