1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
8 .\" References consulted:
9 .\" GNU glibc-2 source code and manual
10 .\" Dinkumware C library reference http://www.dinkumware.com/
11 .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
14 .TH MBRLEN 3 1999-07-25 "GNU" "Linux Programmer's Manual"
16 mbrlen \- determine number of bytes in next multibyte character
21 .BI "size_t mbrlen(const char *" s ", size_t " n ", mbstate_t *" ps );
26 function inspects at most \fIn\fP bytes of the multibyte
27 string starting at \fIs\fP and extracts the next complete multibyte character.
28 It updates the shift state \fI*ps\fP.
29 If the multibyte character is not the
30 null wide character, it returns the number of bytes that were consumed from
32 If the multibyte character is the null wide character, it resets the
33 shift state \fI*ps\fP to the initial state and returns 0.
35 If the \fIn\fP bytes starting at \fIs\fP do not contain a complete multibyte
38 returns \fI(size_t)\ \-2\fP.
39 This can happen even if
40 \fIn\fP >= \fIMB_CUR_MAX\fP, if the multibyte string contains redundant shift
43 If the multibyte string starting at \fIs\fP contains an invalid multibyte
44 sequence before the next complete character,
47 \fI(size_t)\ \-1\fP and sets \fIerrno\fP to \fBEILSEQ\fP.
49 the effects on \fI*ps\fP are undefined.
51 If \fIps\fP is a NULL pointer, a static anonymous state only known to the
53 function is used instead.
57 function returns the number of bytes
58 parsed from the multibyte
59 sequence starting at \fIs\fP, if a non-null wide character was recognized.
60 It returns 0, if a null wide character was recognized.
63 and sets \fIerrno\fP to \fBEILSEQ\fP, if an invalid multibyte sequence was
65 It returns \fI(size_t)\ \-2\fP if it couldn't parse a complete multibyte
66 character, meaning that \fIn\fP should be increased.