2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Donn Seeley at BSDI.
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 .\" 4. Neither the name of the University nor the names of its contributors
16 .\" may be used to endorse or promote products derived from this software
17 .\" without specific prior written permission.
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" @(#)setlocale.3 8.1 (Berkeley) 6/9/93
32 .\" $FreeBSD: src/lib/libc/locale/setlocale.3,v 1.35 2007/01/09 00:28:00 imp Exp $
39 .Nd natural language formatting for C
45 .Fn setlocale "int category" "const char *locale"
49 function sets the C library's notion
50 of natural language formatting style
51 for particular sets of routines.
52 Each such style is called a
54 and is invoked using an appropriate name passed as a C string.
58 function recognizes several categories of routines.
59 These are the categories and the sets of routines they select:
61 .Bl -tag -width LC_MONETARY
63 Set the entire locale generically.
65 Set a locale for string collation routines.
66 This controls alphabetic ordering in
76 This controls recognition of upper and lower case,
77 alphabetic or non-alphabetic characters,
80 Set a locale for message catalogs, see
84 Set a locale for formatting monetary values;
89 Set a locale for formatting numbers.
90 This controls the formatting of decimal points
91 in input and output of floating point numbers
96 as well as values returned by
99 Set a locale for formatting dates and times using the
104 Only three locales are defined by default,
107 which denotes the native environment, and the
111 locales, which denote the C language environment.
118 to return the current locale.
119 By default, C programs start in the
122 The only function in the library that sets the locale is
124 the locale is never changed as a side effect of some other routine.
126 Upon successful completion,
128 returns the string associated with the specified
136 and fails to change the locale
137 if the given combination of
143 .Bl -tag -width /usr/share/locale/locale/category -compact
144 .It Pa $PATH_LOCALE/ Ns Em locale/category
145 .It Pa /usr/share/locale/ Ns Em locale/category
146 locale file for the locale
152 No errors are defined.
173 function first appeared in