1mbrtowc(3)                 Library Functions Manual                 mbrtowc(3)
2
3
4

NAME

6       mbrtowc - convert a multibyte sequence to a wide character
7

LIBRARY

9       Standard C library (libc, -lc)
10

SYNOPSIS

12       #include <wchar.h>
13
14       size_t mbrtowc(wchar_t *restrict pwc, const char s[restrict .n],
15                      size_t n, mbstate_t *restrict ps);
16

DESCRIPTION

18       The  main  case  for this function is when s is not NULL and pwc is not
19       NULL.  In this case, the mbrtowc() function inspects at most n bytes of
20       the  multibyte  string starting at s, extracts the next complete multi‐
21       byte character, converts it to a wide character and stores it at  *pwc.
22       It updates the shift state *ps.  If the converted wide character is not
23       L'\0' (the null wide character), it returns the number  of  bytes  that
24       were consumed from s.  If the converted wide character is L'\0', it re‐
25       sets the shift state *ps to the initial state and returns 0.
26
27       If the n bytes starting at s do not contain a complete multibyte  char‐
28       acter,  mbrtowc()  returns  (size_t) -2.   This can happen even if n >=
29       MB_CUR_MAX, if the multibyte string contains redundant shift sequences.
30
31       If the multibyte string starting at s contains an invalid multibyte se‐
32       quence   before   the   next   complete  character,  mbrtowc()  returns
33       (size_t) -1 and sets errno to EILSEQ.  In this case, the effects on *ps
34       are undefined.
35
36       A  different case is when s is not NULL but pwc is NULL.  In this case,
37       the mbrtowc() function behaves as above, except that it does not  store
38       the converted wide character in memory.
39
40       A  third  case is when s is NULL.  In this case, pwc and n are ignored.
41       If the conversion state represented by *ps denotes an incomplete multi‐
42       byte  character conversion, the mbrtowc() function returns (size_t) -1,
43       sets errno to EILSEQ, and leaves *ps in an undefined state.  Otherwise,
44       the mbrtowc() function puts *ps in the initial state and returns 0.
45
46       In  all  of  the  above  cases, if ps is NULL, a static anonymous state
47       known only to the mbrtowc() function is used instead.   Otherwise,  *ps
48       must  be  a  valid mbstate_t object.  An mbstate_t object a can be ini‐
49       tialized to the initial state by zeroing it, for example using
50
51           memset(&a, 0, sizeof(a));
52

RETURN VALUE

54       The mbrtowc() function returns the number  of  bytes  parsed  from  the
55       multibyte  sequence  starting  at  s, if a non-L'\0' wide character was
56       recognized.  It returns 0, if a L'\0' wide  character  was  recognized.
57       It  returns  (size_t) -1 and sets errno to EILSEQ, if an invalid multi‐
58       byte sequence was encountered.  It returns (size_t) -2 if  it  couldn't
59       parse  a  complete  multibyte  character,  meaning that n should be in‐
60       creased.
61

ATTRIBUTES

63       For an  explanation  of  the  terms  used  in  this  section,  see  at‐
64       tributes(7).
65
66       ┌─────────────────────────┬───────────────┬────────────────────────────┐
67Interface                Attribute     Value                      
68       ├─────────────────────────┼───────────────┼────────────────────────────┤
69mbrtowc()                │ Thread safety │ MT-Unsafe race:mbrtowc/!ps │
70       └─────────────────────────┴───────────────┴────────────────────────────┘
71

STANDARDS

73       C11, POSIX.1-2008.
74

HISTORY

76       POSIX.1-2001, C99.
77

NOTES

79       The  behavior  of  mbrtowc()  depends  on  the LC_CTYPE category of the
80       current locale.
81

SEE ALSO

83       mbsinit(3), mbsrtowcs(3)
84
85
86
87Linux man-pages 6.05              2023-07-20                        mbrtowc(3)
Impressum