This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



WCRTOMB(3)                              BSD Library Functions Manual                              WCRTOMB(3)

NAME
     wcrtomb, wcrtomb_l -- convert a wide-character code to a character (restartable)

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <wchar.h>

     size_t
     wcrtomb(char *restrict s, wchar_t wc, mbstate_t *restrict ps);

     #include <wchar.h>
     #include <xlocale.h>

     size_t
     wcrtomb_l(char *restrict s, wchar_t wc, mbstate_t *restrict ps, locale_t loc);

DESCRIPTION
     The wcrtomb() function stores a multibyte sequence representing the wide character wc, including any
     necessary shift sequences, to the character array s.  A maximum of MB_CUR_MAX bytes will be stored.

     If s is NULL, wcrtomb() behaves as if s pointed to an internal buffer and wc were a null wide character
     (L'\0').

     The mbstate_t argument, ps, is used to keep track of the shift state.  If it is NULL, wcrtomb() uses an
     internal, static mbstate_t object, which is initialized to the initial conversion state at program
     startup.

     While the wcrtomb() function uses the current locale, the wcrtomb_l() function may be passed a locale
     directly. See xlocale(3) for more information.

RETURN VALUES
     The wcrtomb() functions returns the length (in bytes) of the multibyte sequence needed to represent wc,
     or (size_t)-1 if wc is not a valid wide character code.

ERRORS
     The wcrtomb() function will fail if:

     [EILSEQ]           An invalid wide character code was specified.

     [EINVAL]           The conversion state is invalid.

SEE ALSO
     mbrtowc(3), multibyte(3), setlocale(3), wctomb(3), xlocale(3)

STANDARDS
     The wcrtomb() function conforms to ISO/IEC 9899:1999 (``ISO C99'').

BSD                                             April 8, 2004                                            BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...