OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / mbsinit.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 MBSINIT 3  2014-03-18 "GNU" "Linux Programmer's Manual"
17 .SH NAME
18 mbsinit \- test for initial shift state
19 .SH SYNOPSIS
20 .nf
21 .B #include <wchar.h>
22 .sp
23 .BI "int mbsinit(const mbstate_t *" ps );
24 .fi
25 .SH DESCRIPTION
26 Character conversion between the multibyte representation and the wide
27 character representation uses conversion state, of type
28 .IR mbstate_t .
29 Conversion of a string uses a finite-state machine; when it is interrupted
30 after the complete conversion of a number of characters, it may need to
31 save a state for processing the remaining characters.
32 Such a conversion
33 state is needed for the sake of encodings such as ISO-2022 and UTF-7.
34 .PP
35 The initial state is the state at the beginning of conversion of a string.
36 There are two kinds of state: The one used by multibyte to wide character
37 conversion functions, such as
38 .BR mbsrtowcs (3),
39 and the one used by wide
40 character to multibyte conversion functions, such as
41 .BR wcsrtombs (3),
42 but they both fit in a
43 .IR mbstate_t ,
44 and they both have the same
45 representation for an initial state.
46 .PP
47 For 8-bit encodings, all states are equivalent to the initial state.
48 For multibyte encodings like UTF-8, EUC-*, BIG5 or SJIS, the wide character
49 to multibyte conversion functions never produce non-initial states, but the
50 multibyte to wide-character conversion functions like
51 .BR mbrtowc (3)
52 do
53 produce non-initial states when interrupted in the middle of a character.
54 .PP
55 One possible way to create an
56 .I mbstate_t
57 in initial state is to set it to zero:
58 .nf
59
60     mbstate_t state;
61     memset(&state,0,sizeof(mbstate_t));
62 .fi
63 .PP
64 On Linux, the following works as well, but might generate compiler warnings:
65 .nf
66
67     mbstate_t state = { 0 };
68 .fi
69 .PP
70 The function
71 .BR mbsinit ()
72 tests whether
73 .I *ps
74 corresponds to an
75 initial state.
76 .SH RETURN VALUE
77 .BR mbsinit ()
78 returns nonzero if
79 .I *ps
80 is an initial state, or if
81 .I ps
82 is NULL.
83 Otherwise, it returns 0.
84 .SH ATTRIBUTES
85 .SS Multithreading (see pthreads(7))
86 The
87 .BR mbsinit ()
88 function is thread-safe.
89 .SH CONFORMING TO
90 C99.
91 .SH NOTES
92 The behavior of
93 .BR mbsinit ()
94 depends on the
95 .B LC_CTYPE
96 category of the
97 current locale.
98 .SH SEE ALSO
99 .BR mbrlen (3),
100 .BR mbrtowc (3),
101 .BR wcrtomb (3),
102 .BR mbsrtowcs (3),
103 .BR wcsrtombs (3)
104 .SH COLOPHON
105 This page is part of release 3.68 of the Linux
106 .I man-pages
107 project.
108 A description of the project,
109 information about reporting bugs,
110 and the latest version of this page,
111 can be found at
112 \%http://www.kernel.org/doc/man\-pages/.