1 /* Access to locale-dependent parameters.
2 Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
23 #include <locale.h> /* Define the LC_* category names. */
25 /* Get the type definition. */
31 /* Construct an `nl_item' value for `nl_langinfo' from a locale category
32 (LC_*) and an item index within the category. Some code may depend on
33 the item values within a category increasing monotonically with the
35 #define _NL_ITEM(category, index) (((category) << 16) | (index))
37 /* Extract the category and item index from a constructed `nl_item' value. */
38 #define _NL_ITEM_CATEGORY(item) ((int) (item) >> 16)
39 #define _NL_ITEM_INDEX(item) ((int) (item) & 0xffff)
42 /* Enumeration of locale items that can be queried with `nl_langinfo'. */
45 /* LC_TIME category: date and time formatting. */
47 /* Abbreviated days of the week. */
48 ABDAY_1
= _NL_ITEM (LC_TIME
, 0), /* Sun */
49 #define ABDAY_1 ABDAY_1
51 #define ABDAY_2 ABDAY_2
53 #define ABDAY_3 ABDAY_3
55 #define ABDAY_4 ABDAY_4
57 #define ABDAY_5 ABDAY_5
59 #define ABDAY_6 ABDAY_6
61 #define ABDAY_7 ABDAY_7
63 /* Long-named days of the week. */
70 DAY_4
, /* Wednesday */
79 /* Abbreviated month names. */
81 #define ABMON_1 ABMON_1
83 #define ABMON_2 ABMON_2
85 #define ABMON_3 ABMON_3
87 #define ABMON_4 ABMON_4
89 #define ABMON_5 ABMON_5
91 #define ABMON_6 ABMON_6
93 #define ABMON_7 ABMON_7
95 #define ABMON_8 ABMON_8
97 #define ABMON_9 ABMON_9
99 #define ABMON_10 ABMON_10
101 #define ABMON_11 ABMON_11
103 #define ABMON_12 ABMON_12
105 /* Long month names. */
125 #define MON_10 MON_10
127 #define MON_11 MON_11
129 #define MON_12 MON_12
131 AM_STR
, /* Ante meridian string. */
132 #define AM_STR AM_STR
133 PM_STR
, /* Post meridian string. */
134 #define PM_STR PM_STR
136 D_T_FMT
, /* Date and time format for strftime. */
137 #define D_T_FMT D_T_FMT
138 D_FMT
, /* Date format for strftime. */
140 T_FMT
, /* Time format for strftime. */
142 T_FMT_AMPM
, /* 12-hour time format for strftime. */
143 #define T_FMT_AMPM T_FMT_AMPM
145 ERA
, /* Alternate era. */
147 ERA_YEAR
, /* Year in alternate era format. */
148 #define ERA_YEAR ERA_YEAR
149 ERA_D_FMT
, /* Date in alternate era format. */
150 #define ERA_D_FMT ERA_D_FMT
151 ALT_DIGITS
, /* Alternate symbols for digits. */
152 #define ALT_DIGITS ALT_DIGITS
153 ERA_D_T_FMT
, /* Date and time in alternate era format. */
154 #define ERA_D_T_FMT ERA_D_T_FMT
155 ERA_T_FMT
, /* Time in alternate era format. */
156 #define ERA_T_FMT ERA_T_FMT
158 _NL_TIME_NUM_ALT_DIGITS
, /* Number entries in the alt_digits arrays. */
160 _NL_TIME_ERA_NUM_ENTRIES
, /* Number entries in the era arrays. */
161 _NL_TIME_ERA_ENTRIES_EB
, /* Structure with era entries in usable form.*/
162 _NL_TIME_ERA_ENTRIES_EL
,
164 _NL_NUM_LC_TIME
, /* Number of indices in LC_TIME category. */
166 /* LC_COLLATE category: text sorting.
167 This information is accessed by the strcoll and strxfrm functions.
168 These `nl_langinfo' names are used only internally. */
169 _NL_COLLATE_NRULES
= _NL_ITEM (LC_COLLATE
, 0),
171 _NL_COLLATE_HASH_SIZE
,
172 _NL_COLLATE_HASH_LAYERS
,
173 _NL_COLLATE_TABLE_EB
,
174 _NL_COLLATE_TABLE_EL
,
175 _NL_COLLATE_UNDEFINED
,
176 _NL_COLLATE_EXTRA_EB
,
177 _NL_COLLATE_EXTRA_EL
,
178 _NL_COLLATE_ELEM_HASH_SIZE
,
179 _NL_COLLATE_ELEM_HASH_EB
,
180 _NL_COLLATE_ELEM_HASH_EL
,
181 _NL_COLLATE_ELEM_STR_POOL
,
182 _NL_COLLATE_ELEM_VAL_EB
,
183 _NL_COLLATE_ELEM_VAL_EL
,
184 _NL_COLLATE_SYMB_HASH_SIZE
,
185 _NL_COLLATE_SYMB_HASH_EB
,
186 _NL_COLLATE_SYMB_HASH_EL
,
187 _NL_COLLATE_SYMB_STR_POOL
,
188 _NL_COLLATE_SYMB_CLASS_EB
,
189 _NL_COLLATE_SYMB_CLASS_EL
,
192 /* LC_CTYPE category: character classification.
193 This information is accessed by the functions in <ctype.h>.
194 These `nl_langinfo' names are used only internally. */
195 _NL_CTYPE_CLASS
= _NL_ITEM (LC_CTYPE
, 0),
196 _NL_CTYPE_TOUPPER_EB
,
197 _NL_CTYPE_TOLOWER_EB
,
198 _NL_CTYPE_TOUPPER_EL
,
199 _NL_CTYPE_TOLOWER_EL
,
204 _NL_CTYPE_HASH_LAYERS
,
205 _NL_CTYPE_CLASS_NAMES
,
208 _NL_CTYPE_MB_CUR_MAX
,
209 _NL_CTYPE_CODESET_NAME
,
211 CODESET
= _NL_CTYPE_CODESET_NAME
,
215 /* LC_MONETARY category: formatting of monetary quantities.
216 These items each correspond to a member of `struct lconv',
217 defined in <locale.h>. */
218 INT_CURR_SYMBOL
= _NL_ITEM (LC_MONETARY
, 0),
219 #define INT_CURR_SYMBOL INT_CURR_SYMBOL
221 #define CURRENCY_SYMBOL CURRENCY_SYMBOL
223 CRNCYSTR
= CURRENCY_SYMBOL
,
224 # define CRNCYSTR CRNCYSTR
227 #define MON_DECIMAL_POINT MON_DECIMAL_POINT
229 #define MON_THOUSANDS_SEP MON_THOUSANDS_SEP
231 #define MON_GROUPING MON_GROUPING
233 #define POSITIVE_SIGN POSITIVE_SIGN
235 #define NEGATIVE_SIGN NEGATIVE_SIGN
237 #define INT_FRAC_DIGITS INT_FRAC_DIGITS
239 #define FRAC_DIGITS FRAC_DIGITS
241 #define P_CS_PRECEDES P_CS_PRECEDES
243 #define P_SEP_BY_SPACE P_SEP_BY_SPACE
245 #define N_CS_PRECEDES N_CS_PRECEDES
247 #define N_SEP_BY_SPACE N_SEP_BY_SPACE
249 #define P_SIGN_POSN P_SIGN_POSN
251 #define N_SIGN_POSN N_SIGN_POSN
254 /* LC_NUMERIC category: formatting of numbers.
255 These also correspond to members of `struct lconv'; see <locale.h>. */
256 DECIMAL_POINT
= _NL_ITEM (LC_NUMERIC
, 0),
257 #define DECIMAL_POINT DECIMAL_POINT
259 RADIXCHAR
= DECIMAL_POINT
,
260 # define RADIXCHAR RADIXCHAR
263 #define THOUSANDS_SEP THOUSANDS_SEP
265 THOUSEP
= THOUSANDS_SEP
,
266 #define THOUSANDS_SEP THOUSANDS_SEP
269 #define GROUPING GROUPING
272 YESEXPR
= _NL_ITEM (LC_MESSAGES
, 0), /* Regex matching ``yes'' input. */
273 #define YESEXPR YESEXPR
274 NOEXPR
, /* Regex matching ``no'' input. */
275 #define NOEXPR NOEXPR
276 YESSTR
, /* Output string for ``yes''. */
277 #define YESSTR YESSTR
278 NOSTR
, /* Output string for ``no''. */
282 /* This marks the highest value used. */
287 /* Return the current locale's value for ITEM.
288 If ITEM is invalid, an empty string is returned.
290 The string returned will not change until `setlocale' is called;
291 it is usually in read-only memory and cannot be modified. */
293 extern char *nl_langinfo
__P ((nl_item __item
));
298 #endif /* langinfo.h */