OSDN Git Service

(split) LDP: Update original to LDP v3.50.
[linuxjm/LDP_man-pages.git] / original / man3 / mbtowc.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
4 .\" This is free documentation; you can redistribute it and/or
5 .\" modify it under the terms of the GNU General Public License as
6 .\" published by the Free Software Foundation; either version 2 of
7 .\" the License, or (at your option) any later version.
8 .\" %%%LICENSE_END
9 .\"
10 .\" References consulted:
11 .\"   GNU glibc-2 source code and manual
12 .\"   Dinkumware C library reference http://www.dinkumware.com/
13 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
14 .\"   ISO/IEC 9899:1999
15 .\"
16 .TH MBTOWC 3  2011-09-28 "GNU" "Linux Programmer's Manual"
17 .SH NAME
18 mbtowc \- convert a multibyte sequence to a wide character
19 .SH SYNOPSIS
20 .nf
21 .B #include <stdlib.h>
22 .sp
23 .BI "int mbtowc(wchar_t *" pwc ", const char *" s ", size_t " n );
24 .fi
25 .SH DESCRIPTION
26 The main case for this function is when \fIs\fP is not NULL and \fIpwc\fP is
27 not NULL.
28 In this case, the
29 .BR mbtowc ()
30 function inspects at most \fIn\fP
31 bytes of the multibyte string starting at \fIs\fP,
32 extracts the next complete
33 multibyte character, converts it to a wide character and stores it at
34 \fI*pwc\fP.
35 It updates an internal shift state only known to the mbtowc
36 function.
37 If \fIs\fP does not point to a null byte (\(aq\\0\(aq), it returns the number
38 of bytes that were consumed from \fIs\fP, otherwise it returns 0.
39 .PP
40 If the \fIn\fP bytes starting at \fIs\fP do not contain a complete multibyte
41 character, or if they contain an invalid multibyte sequence,
42 .BR mbtowc ()
43 returns \-1.
44 This can happen even if \fIn\fP >= \fIMB_CUR_MAX\fP,
45 if the multibyte string contains redundant shift sequences.
46 .PP
47 A different case is when \fIs\fP is not NULL but \fIpwc\fP is NULL.
48 In this
49 case the
50 .BR mbtowc ()
51 function behaves as above, except that it does not
52 store the converted wide character in memory.
53 .PP
54 A third case is when \fIs\fP is NULL.
55 In this case, \fIpwc\fP and \fIn\fP are
56 ignored.
57 The
58 .BR mbtowc ()
59 function
60 .\" The Dinkumware doc and the Single UNIX specification say this, but
61 .\" glibc doesn't implement this.
62 resets the shift state, only known to this function,
63 to the initial state, and
64 returns nonzero if the encoding has nontrivial shift state, or zero if the
65 encoding is stateless.
66 .SH RETURN VALUE
67 If \fIs\fP is not NULL, the
68 .BR mbtowc ()
69 function returns the number of
70 consumed bytes starting at \fIs\fP, or 0 if \fIs\fP points to a null byte,
71 or \-1 upon failure.
72 .PP
73 If \fIs\fP is NULL, the
74 .BR mbtowc ()
75 function
76 returns nonzero if the encoding
77 has nontrivial shift state, or zero if the encoding is stateless.
78 .SH CONFORMING TO
79 C99.
80 .SH NOTES
81 The behavior of
82 .BR mbtowc ()
83 depends on the
84 .B LC_CTYPE
85 category of the
86 current locale.
87 .PP
88 This function is not multithread safe.
89 The function
90 .BR mbrtowc (3)
91 provides
92 a better interface to the same functionality.
93 .SH SEE ALSO
94 .BR MB_CUR_MAX (3),
95 .BR mbrtowc (3),
96 .BR mbstowcs (3)