]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/locale.7
accept.2, execve.2, futimesat.2, getresuid.2, getrlimit.2, madvise.2, mq_getsetattr...
[thirdparty/man-pages.git] / man7 / locale.7
CommitLineData
bf5a7247 1.\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
fea681da
MK
2.\"
3.\" Permission is granted to make and distribute verbatim copies of this
4.\" manual provided the copyright notice and this permission notice are
5.\" preserved on all copies.
6.\"
7.\" Permission is granted to copy and distribute modified versions of this
8.\" manual under the conditions for verbatim copying, provided that the
9.\" entire resulting derived work is distributed under the terms of a
10.\" permission notice identical to this one.
c13182ef 11.\"
fea681da
MK
12.\" Since the Linux kernel and libraries are constantly changing, this
13.\" manual page may be incorrect or out-of-date. The author(s) assume no
14.\" responsibility for errors or omissions, or for damages resulting from
15.\" the use of the information contained herein. The author(s) may not
16.\" have taken the same level of care in the production of this manual,
17.\" which is licensed free of charge, as they might when working
18.\" professionally.
c13182ef 19.\"
fea681da
MK
20.\" Formatted or processed versions of this manual, if unaccompanied by
21.\" the source, must acknowledge the copyright and authors of this work.
22.\"
23.\" Modified Sat Jul 24 17:28:34 1993 by Rik Faith <faith@cs.unc.edu>
24.\" Modified Sun Jun 01 17:16:34 1997 by Jochen Hein
25.\" <jochen.hein@delphi.central.de>
26.\" Modified Thu Apr 25 00:43:19 2002 by Bruno Haible <bruno@clisp.org>
27.\"
97aec57c 28.TH LOCALE 7 2008-12-05 "Linux" "Linux Programmer's Manual"
fea681da
MK
29.SH NAME
30locale \- Description of multi-language support
31.SH SYNOPSIS
32.nf
33.B #include <locale.h>
34.fi
35.SH DESCRIPTION
c13182ef
MK
36A locale is a set of language and cultural rules.
37These cover aspects
3f1c1b0a 38such as language for messages, different character sets, lexicographic
c13182ef
MK
39conventions, etc.
40A program needs to be able to determine its locale
fea681da
MK
41and act accordingly to be portable to different cultures.
42.PP
43The header
bd12ab88 44.I <locale.h>
fea681da
MK
45declares data types, functions and macros which are useful in this
46task.
47.PP
48The functions it declares are
63f6a20a 49.BR setlocale (3)
fea681da 50to set the current locale, and
63f6a20a 51.BR localeconv (3)
fea681da
MK
52to get information about number formatting.
53.PP
54There are different categories for local information a program might
c13182ef
MK
55need; they are declared as macros.
56Using them as the first argument
fea681da 57to the
63f6a20a 58.BR setlocale (3)
fea681da
MK
59function, it is possible to set one of these to the desired locale:
60.TP
61.B LC_COLLATE
d9bfdb9c 62This is used to change the behavior of the functions
63f6a20a 63.BR strcoll (3)
fea681da 64and
63f6a20a 65.BR strxfrm (3),
c13182ef
MK
66which are used to compare strings in the local alphabet.
67For example,
fea681da
MK
68the German sharp s is sorted as "ss".
69.TP
70.B LC_CTYPE
d9bfdb9c 71This changes the behavior of the character handling and
fea681da 72classification functions, such as
63f6a20a 73.BR isupper (3)
fea681da 74and
63f6a20a 75.BR toupper (3),
2706f299 76and the multi-byte character functions such as
63f6a20a 77.BR mblen (3)
fea681da 78or
63f6a20a 79.BR wctomb (3).
fea681da
MK
80.TP
81.B LC_MONETARY
82changes the information returned by
63f6a20a 83.BR localeconv (3)
fea681da 84which describes the way numbers are usually printed, with details such
c13182ef
MK
85as decimal point versus decimal comma.
86This information is internally
fea681da 87used by the function
63f6a20a 88.BR strfmon (3).
fea681da
MK
89.TP
90.B LC_MESSAGES
dc715588 91changes the language messages are displayed in and what an affirmative or
c13182ef
MK
92negative answer looks like.
93The GNU C-library contains the
63f6a20a
MK
94.BR gettext (3),
95.BR ngettext (3),
fea681da 96and
63f6a20a 97.BR rpmatch (3)
c13182ef
MK
98functions to ease the use of these information.
99The GNU gettext family of
fea681da 100functions also obey the environment variable
97aec57c
MK
101.BR LANGUAGE
102(containing a colon-separated list of locales)
103if the category is set to a valid locale other than
104.BR """C""" .
fea681da
MK
105.TP
106.B LC_NUMERIC
107changes the information used by the
63f6a20a 108.BR printf (3)
fea681da 109and
63f6a20a 110.BR scanf (3)
c13182ef
MK
111family of functions, when they are advised to use the locale-settings.
112This information can also be read with the
63f6a20a 113.BR localeconv (3)
fea681da
MK
114function.
115.TP
116.B LC_TIME
d9bfdb9c 117changes the behavior of the
63f6a20a 118.BR strftime (3)
fea681da 119function to display the current time in a locally acceptable form; for
2706f299
MK
120example, most of Europe uses a 24-hour clock versus the
12112-hour clock used in the United States.
fea681da
MK
122.TP
123.B LC_ALL
124All of the above.
c8f2dd47 125.\" FIXME glibc 2.2.2 added new nonstandard locale categories:
f6fa37d1
MK
126.\" LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_NAME,
127.\" LC_PAPER, LC_TELEPHONE. These need to be documented.
fea681da
MK
128.PP
129If the second argument to
63f6a20a 130.BR setlocale (3)
fea681da
MK
131is empty string,
132.BR """""" ,
133for the default locale, it is determined using the following steps:
134.IP 1.
135If there is a non-null environment variable
136.BR LC_ALL ,
137the value of
138.B LC_ALL
139is used.
140.IP 2.
141If an environment variable with the same name as one of the categories
142above exists and is non-null, its value is used for that category.
143.IP 3.
144If there is a non-null environment variable
145.BR LANG ,
146the value of
147.B LANG
148is used.
149.PP
150Values about local numeric formatting is made available in a
8478ee02 151.I struct lconv
fea681da 152returned by the
63f6a20a 153.BR localeconv (3)
fea681da 154function, which has the following declaration:
088a639b 155.in +2n
fea681da 156.nf
fea681da 157
f6fa37d1 158struct lconv {
65b4e14d 159
088a639b 160 /* Numeric (non-monetary) information */
fea681da 161
088a639b
MK
162 char *decimal_point; /* Radix character */
163 char *thousands_sep; /* Separator for digit groups to left
164 of radix character */
165 char *grouping; /* Each element is the number of digits in a
166 group; elements with higher indices are
167 further left. An element with value CHAR_MAX
168 means that no further grouping is done. An
169 element with value 0 means that the previous
170 element is used for all groups further left. */
9fb1e24a 171
088a639b 172 /* Remaining fields are for monetary information */
9fb1e24a 173
088a639b 174 char *int_curr_symbol; /* First three chars are a currency symbol
84c517a4 175 from ISO 4217. Fourth char is the
f81fb444 176 separator. Fifth char is \(aq\\0\(aq. */
088a639b
MK
177 char *currency_symbol; /* Local currency symbol */
178 char *mon_decimal_point; /* Radix character */
179 char *mon_thousands_sep; /* Like \fIthousands_sep\fP above */
180 char *mon_grouping; /* Like \fIgrouping\fP above */
181 char *positive_sign; /* Sign for positive values */
182 char *negative_sign; /* Sign for negative values */
84c517a4 183 char int_frac_digits; /* International fractional digits */
088a639b
MK
184 char frac_digits; /* Local fractional digits */
185 char p_cs_precedes; /* 1 if currency_symbol precedes a
186 positive value, 0 if succeeds */
187 char p_sep_by_space; /* 1 if a space separates currency_symbol
188 from a positive value */
189 char n_cs_precedes; /* 1 if currency_symbol precedes a
190 negative value, 0 if succeeds */
191 char n_sep_by_space; /* 1 if a space separates currency_symbol
192 from a negative value */
193 /* Positive and negative sign positions:
194 0 Parentheses surround the quantity and currency_symbol.
195 1 The sign string precedes the quantity and currency_symbol.
196 2 The sign string succeeds the quantity and currency_symbol.
197 3 The sign string immediately precedes the currency_symbol.
198 4 The sign string immediately succeeds the currency_symbol. */
199 char p_sign_posn;
200 char n_sign_posn;
fea681da
MK
201};
202.fi
088a639b 203.in
a7fadb55
MK
204.SH "CONFORMING TO"
205POSIX.1-2001.
f6fa37d1 206
fea681da
MK
207The GNU gettext functions are specified in LI18NUX2000.
208.SH "SEE ALSO"
209.BR locale (1),
210.BR localedef (1),
211.BR gettext (3),
212.BR localeconv (3),
213.BR ngettext (3),
214.BR nl_langinfo (3),
215.BR rpmatch (3),
216.BR setlocale (3),
217.BR strcoll (3),
218.BR strfmon (3),
219.BR strftime (3),
220.BR strxfrm (3)