]> git.saurik.com Git - apple/libc.git/blame - locale/setlocale.3
Libc-583.tar.gz
[apple/libc.git] / locale / setlocale.3
CommitLineData
224c7076
A
1.\" Copyright (c) 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Donn Seeley at BSDI.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
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.
22.\"
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
33.\" SUCH DAMAGE.
34.\"
35.\" @(#)setlocale.3 8.1 (Berkeley) 6/9/93
36.\" $FreeBSD: src/lib/libc/locale/setlocale.3,v 1.33 2004/10/17 06:51:50 tjr Exp $
37.\"
38.Dd November 21, 2003
39.Dt SETLOCALE 3
40.Os
41.Sh NAME
42.Nm setlocale
43.Nd natural language formatting for C
44.Sh LIBRARY
45.Lb libc
46.Sh SYNOPSIS
47.In locale.h
48.Ft char *
49.Fo setlocale
50.Fa "int category"
51.Fa "const char *locale"
52.Fc
53.Sh DESCRIPTION
54The
55.Fn setlocale
56function sets the C library's notion
57of natural language formatting style
58for particular sets of routines.
59Each such style is called a
60.Sq locale
61and is invoked using an appropriate name passed as a C string.
62.Pp
63The
64.Fn setlocale
65function recognizes several categories of routines.
66These are the categories and the sets of routines they select:
67.Pp
68.Bl -tag -width LC_MONETARY
69.It Dv LC_ALL
70Set the entire locale generically.
71.It Dv LC_COLLATE
72Set a locale for string collation routines.
73This controls alphabetic ordering in
74.Fn strcoll
75and
76.Fn strxfrm .
77.It Dv LC_CTYPE
78Set a locale for the
79.Xr ctype 3
80and
81.Xr multibyte 3
82functions.
83This controls recognition of upper and lower case,
84alphabetic or non-alphabetic characters,
85and so on.
86.It Dv LC_MESSAGES
87Set a locale for message catalogs, see
88.Xr catopen 3
89function.
90.It Dv LC_MONETARY
91Set a locale for formatting monetary values;
92this affects the
93.Fn localeconv
94function.
95.It Dv LC_NUMERIC
96Set a locale for formatting numbers.
97This controls the formatting of decimal points
98in input and output of floating point numbers
99in functions such as
100.Fn printf
101and
102.Fn scanf ,
103as well as values returned by
104.Fn localeconv .
105.It Dv LC_TIME
106Set a locale for formatting dates and times using the
107.Fn strftime
108function.
109.El
110.Pp
111Only three locales are defined by default:
112the empty string
113.Li "\&""\|""
114(which denotes the native environment) and the
115.Li "\&""C""
116and
117.Li "\&""POSIX""
118locales (which denote the C-language environment).
119A
120.Fa locale
121argument of
122.Dv NULL
123causes
124.Fn setlocale
125to return the current locale.
126By default, C programs start in the
127.Li "\&""C""
128locale.
129The only function in the library that sets the locale is
130.Fn setlocale ;
131the locale is never changed as a side effect of some other routine.
132.Sh RETURN VALUES
133Upon successful completion,
134.Fn setlocale
135returns the string associated with the specified
136.Fa category
137for the requested
138.Fa locale .
139The
140.Fn setlocale
141function returns
142.Dv NULL
143and fails to change the locale
144if the given combination of
145.Fa category
146and
147.Fa locale
148makes no sense.
149.Sh ERRORS
150No errors are defined.
151.Sh FILES
152.Bl -tag -width /usr/share/locale/locale/category -compact
153.It Pa $PATH_LOCALE/ Ns Em locale/category
154.It Pa /usr/share/locale/ Ns Em locale/category
155locale file for the locale
156.Em locale
157and the category
158.Em category .
159.El
160.Sh SEE ALSO
161.Xr colldef 1 ,
162.Xr mklocale 1 ,
163.Xr catopen 3 ,
164.Xr ctype 3 ,
165.Xr localeconv 3 ,
166.Xr multibyte 3 ,
167.Xr strcoll 3 ,
168.Xr strxfrm 3 ,
169.Xr euc 5 ,
170.Xr utf8 5 ,
171.Xr environ 7
172.Sh STANDARDS
173The
174.Fn setlocale
175function conforms to
176.St -isoC-99 .
177.Sh HISTORY
178The
179.Fn setlocale
180function first appeared in
181.Bx 4.4 .