userfaultfd.2: Describe memory types that can be used from 4.11
[man-pages.git] / man3 / mbsinit.3
blob7ddb5a4f7fbe6d19bf8c9d25e923fbf082356046
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  2016-10-08 "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)
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
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
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 For an explanation of the terms used in this section, see
86 .BR attributes (7).
87 .TS
88 allbox;
89 lb lb lb
90 l l l.
91 Interface       Attribute       Value
93 .BR mbsinit ()
94 T}      Thread safety   MT-Safe
95 .TE
96 .SH CONFORMING TO
97 POSIX.1-2001, POSIX.1-2008, C99.
98 .SH NOTES
99 The behavior of
100 .BR mbsinit ()
101 depends on the
102 .B LC_CTYPE
103 category of the
104 current locale.
105 .SH SEE ALSO
106 .BR mbrlen (3),
107 .BR mbrtowc (3),
108 .BR mbsrtowcs (3),
109 .BR wcrtomb (3),
110 .BR wcsrtombs (3)