2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Paul Borman at Krystal Technologies.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\" must display the following acknowledgement:
17 .\" This product includes software developed by the University of
18 .\" California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\" may be used to endorse or promote products derived from this software
21 .\" without specific prior written permission.
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" @(#)rune.3 8.2 (Berkeley) 12/11/93
36 .\" $FreeBSD: src/lib/libc/locale/rune.3,v 1.22 2002/12/19 09:40:22 ru Exp $
49 .Nd rune support for C
56 .Fn setrunelocale "char *locale"
58 .Fn setinvalidrune "rune_t rune"
60 .Fn sgetrune "const char *string" "size_t n" "char const **result"
62 .Fn sputrune "rune_t rune" "char *string" "size_t n" "char **result"
66 .Fn fgetrune "FILE *stream"
68 .Fn fungetrune "rune_t rune" "FILE *stream"
70 .Fn fputrune "rune_t rune" "FILE *stream"
76 functions have been deprecated in favour of the
78 C99 extended multibyte and wide character facilities
79 and should not be used in new applications.
93 controls the type of encoding used to represent runes as multibyte strings
94 as well as the properties of the runes as defined in
98 argument indicates which locale to load.
99 If the locale is successfully loaded,
101 is returned, otherwise an errno value is returned to indicate the
106 function sets the value of the global value
113 function tries to read a single multibyte character from
120 is successful, the rune is returned.
126 will point to the first byte which was not converted in
132 do not describe a full multibyte character,
138 If there is an encoding error at the start of
143 will point to the second character of
148 function tries to encode
150 as a multibyte string and store it at
154 bytes will be stored.
160 will be set to point to the first byte in string following the new
172 is the number of bytes that would be needed to store the multibyte value.
173 If the multibyte character would consist of more than
184 will return the number of bytes which would be needed to store
186 as a multibyte character.
190 function operates the same as
192 with the exception that it attempts to read enough bytes from
194 to decode a single rune. It returns either
198 on an encoding error, or the rune decoded if all went well.
202 function pushes the multibyte encoding, as provided by
220 function writes the multibyte encoding of
234 function returns one of the following values:
246 The locale could not be found.
248 The file found was not a valid file.
253 function either returns the rune read or
257 function returns the number of bytes needed to store
259 as a multibyte string.
261 .Bl -tag -width /usr/share/locale/locale/LC_CTYPE -compact
262 .It Pa $PATH_LOCALE/ Ns Em locale Ns /LC_CTYPE
263 .It Pa /usr/share/locale/ Ns Em locale Ns /LC_CTYPE
264 binary LC_CTYPE file for the locale
274 These functions first appeared in
279 function and the other non-ANSI rune functions were inspired by
280 .Sy "Plan 9 from Bell Labs" .
281 .\"They were conceived at the San Diego 1993 Summer USENIX conference by
282 .\"Paul Borman of Krystal Technologies, Keith Bostic of CSRG and Andrew Hume