man-pages/man7/locale.7

221 lines
7.2 KiB
Groff
Raw Normal View History

.\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
2004-11-03 13:51:07 +00:00
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
2004-11-03 13:51:07 +00:00
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Modified Sat Jul 24 17:28:34 1993 by Rik Faith <faith@cs.unc.edu>
.\" Modified Sun Jun 01 17:16:34 1997 by Jochen Hein
.\" <jochen.hein@delphi.central.de>
.\" Modified Thu Apr 25 00:43:19 2002 by Bruno Haible <bruno@clisp.org>
.\"
.TH LOCALE 7 2008-12-05 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
locale \- Description of multi-language support
.SH SYNOPSIS
.nf
.B #include <locale.h>
.fi
.SH DESCRIPTION
A locale is a set of language and cultural rules.
These cover aspects
2006-05-29 01:20:08 +00:00
such as language for messages, different character sets, lexicographic
conventions, etc.
A program needs to be able to determine its locale
2004-11-03 13:51:07 +00:00
and act accordingly to be portable to different cultures.
.PP
The header
2005-11-03 12:47:27 +00:00
.I <locale.h>
2004-11-03 13:51:07 +00:00
declares data types, functions and macros which are useful in this
task.
.PP
The functions it declares are
2007-05-11 23:29:44 +00:00
.BR setlocale (3)
2004-11-03 13:51:07 +00:00
to set the current locale, and
2007-05-11 23:29:44 +00:00
.BR localeconv (3)
2004-11-03 13:51:07 +00:00
to get information about number formatting.
.PP
There are different categories for local information a program might
need; they are declared as macros.
Using them as the first argument
2004-11-03 13:51:07 +00:00
to the
2007-05-11 23:29:44 +00:00
.BR setlocale (3)
2004-11-03 13:51:07 +00:00
function, it is possible to set one of these to the desired locale:
.TP
.B LC_COLLATE
This is used to change the behavior of the functions
2007-05-11 23:29:44 +00:00
.BR strcoll (3)
2004-11-03 13:51:07 +00:00
and
2007-05-11 23:29:44 +00:00
.BR strxfrm (3),
which are used to compare strings in the local alphabet.
For example,
2004-11-03 13:51:07 +00:00
the German sharp s is sorted as "ss".
.TP
.B LC_CTYPE
This changes the behavior of the character handling and
2004-11-03 13:51:07 +00:00
classification functions, such as
2007-05-11 23:29:44 +00:00
.BR isupper (3)
2004-11-03 13:51:07 +00:00
and
2007-05-11 23:29:44 +00:00
.BR toupper (3),
2007-12-26 08:00:10 +00:00
and the multi-byte character functions such as
2007-05-11 23:29:44 +00:00
.BR mblen (3)
2004-11-03 13:51:07 +00:00
or
2007-05-11 23:29:44 +00:00
.BR wctomb (3).
2004-11-03 13:51:07 +00:00
.TP
.B LC_MONETARY
changes the information returned by
2007-05-11 23:29:44 +00:00
.BR localeconv (3)
2004-11-03 13:51:07 +00:00
which describes the way numbers are usually printed, with details such
as decimal point versus decimal comma.
This information is internally
2004-11-03 13:51:07 +00:00
used by the function
2007-05-11 23:29:44 +00:00
.BR strfmon (3).
2004-11-03 13:51:07 +00:00
.TP
.B LC_MESSAGES
2007-08-27 12:54:48 +00:00
changes the language messages are displayed in and what an affirmative or
negative answer looks like.
The GNU C-library contains the
2007-05-11 23:29:44 +00:00
.BR gettext (3),
.BR ngettext (3),
2004-11-03 13:51:07 +00:00
and
2007-05-11 23:29:44 +00:00
.BR rpmatch (3)
functions to ease the use of these information.
The GNU gettext family of
2004-11-03 13:51:07 +00:00
functions also obey the environment variable
.BR LANGUAGE
(containing a colon-separated list of locales)
if the category is set to a valid locale other than
.BR """C""" .
2004-11-03 13:51:07 +00:00
.TP
.B LC_NUMERIC
changes the information used by the
2007-05-11 23:29:44 +00:00
.BR printf (3)
2004-11-03 13:51:07 +00:00
and
2007-05-11 23:29:44 +00:00
.BR scanf (3)
family of functions, when they are advised to use the locale-settings.
This information can also be read with the
2007-05-11 23:29:44 +00:00
.BR localeconv (3)
2004-11-03 13:51:07 +00:00
function.
.TP
.B LC_TIME
changes the behavior of the
2007-05-11 23:29:44 +00:00
.BR strftime (3)
2004-11-03 13:51:07 +00:00
function to display the current time in a locally acceptable form; for
2007-12-26 08:00:10 +00:00
example, most of Europe uses a 24-hour clock versus the
12-hour clock used in the United States.
2004-11-03 13:51:07 +00:00
.TP
.B LC_ALL
All of the above.
.\" FIXME glibc 2.2.2 added new nonstandard locale categories:
.\" LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_NAME,
.\" LC_PAPER, LC_TELEPHONE. These need to be documented.
2004-11-03 13:51:07 +00:00
.PP
If the second argument to
2007-05-11 23:29:44 +00:00
.BR setlocale (3)
2004-11-03 13:51:07 +00:00
is empty string,
.BR """""" ,
for the default locale, it is determined using the following steps:
.IP 1.
If there is a non-null environment variable
.BR LC_ALL ,
the value of
.B LC_ALL
is used.
.IP 2.
If an environment variable with the same name as one of the categories
above exists and is non-null, its value is used for that category.
.IP 3.
If there is a non-null environment variable
.BR LANG ,
the value of
.B LANG
is used.
.PP
Values about local numeric formatting is made available in a
2005-11-02 13:55:25 +00:00
.I struct lconv
2004-11-03 13:51:07 +00:00
returned by the
2007-05-11 23:29:44 +00:00
.BR localeconv (3)
2004-11-03 13:51:07 +00:00
function, which has the following declaration:
.in +2n
2004-11-03 13:51:07 +00:00
.nf
struct lconv {
2006-02-07 23:22:43 +00:00
/* Numeric (non-monetary) information */
2004-11-03 13:51:07 +00:00
char *decimal_point; /* Radix character */
char *thousands_sep; /* Separator for digit groups to left
of radix character */
char *grouping; /* Each element is the number of digits in a
group; elements with higher indices are
further left. An element with value CHAR_MAX
means that no further grouping is done. An
element with value 0 means that the previous
element is used for all groups further left. */
/* Remaining fields are for monetary information */
char *int_curr_symbol; /* First three chars are a currency symbol
from ISO 4217. Fourth char is the
2008-06-09 15:49:35 +00:00
separator. Fifth char is \(aq\\0\(aq. */
char *currency_symbol; /* Local currency symbol */
char *mon_decimal_point; /* Radix character */
char *mon_thousands_sep; /* Like \fIthousands_sep\fP above */
char *mon_grouping; /* Like \fIgrouping\fP above */
char *positive_sign; /* Sign for positive values */
char *negative_sign; /* Sign for negative values */
char int_frac_digits; /* International fractional digits */
char frac_digits; /* Local fractional digits */
char p_cs_precedes; /* 1 if currency_symbol precedes a
positive value, 0 if succeeds */
char p_sep_by_space; /* 1 if a space separates currency_symbol
from a positive value */
char n_cs_precedes; /* 1 if currency_symbol precedes a
negative value, 0 if succeeds */
char n_sep_by_space; /* 1 if a space separates currency_symbol
from a negative value */
/* Positive and negative sign positions:
0 Parentheses surround the quantity and currency_symbol.
1 The sign string precedes the quantity and currency_symbol.
2 The sign string succeeds the quantity and currency_symbol.
3 The sign string immediately precedes the currency_symbol.
4 The sign string immediately succeeds the currency_symbol. */
char p_sign_posn;
char n_sign_posn;
2004-11-03 13:51:07 +00:00
};
.fi
.in
.SH "CONFORMING TO"
POSIX.1-2001.
2004-11-03 13:51:07 +00:00
The GNU gettext functions are specified in LI18NUX2000.
.SH "SEE ALSO"
.BR locale (1),
.BR localedef (1),
.BR gettext (3),
.BR localeconv (3),
.BR ngettext (3),
.BR nl_langinfo (3),
.BR rpmatch (3),
.BR setlocale (3),
.BR strcoll (3),
.BR strfmon (3),
.BR strftime (3),
.BR strxfrm (3)