1 /* Access to locale-dependent parameters.
2 Copyright (C) 1995-2002, 2003, 2004 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 Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 /* Get the type definition. */
26 #include <bits/locale.h> /* Define the __LC_* category names. */
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 meridiem string. */
132 #define AM_STR AM_STR
133 PM_STR
, /* Post meridiem 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. */
149 # define ERA_YEAR __ERA_YEAR
151 ERA_D_FMT
, /* Date in alternate era format. */
152 #define ERA_D_FMT ERA_D_FMT
153 ALT_DIGITS
, /* Alternate symbols for digits. */
154 #define ALT_DIGITS ALT_DIGITS
155 ERA_D_T_FMT
, /* Date and time in alternate era format. */
156 #define ERA_D_T_FMT ERA_D_T_FMT
157 ERA_T_FMT
, /* Time in alternate era format. */
158 #define ERA_T_FMT ERA_T_FMT
160 _NL_TIME_ERA_NUM_ENTRIES
, /* Number entries in the era arrays. */
161 _NL_TIME_ERA_ENTRIES
, /* Structure with era entries in usable form.*/
163 _NL_WABDAY_1
, /* Sun */
171 /* Long-named days of the week. */
172 _NL_WDAY_1
, /* Sunday */
173 _NL_WDAY_2
, /* Monday */
174 _NL_WDAY_3
, /* Tuesday */
175 _NL_WDAY_4
, /* Wednesday */
176 _NL_WDAY_5
, /* Thursday */
177 _NL_WDAY_6
, /* Friday */
178 _NL_WDAY_7
, /* Saturday */
180 /* Abbreviated month names. */
181 _NL_WABMON_1
, /* Jan */
194 /* Long month names. */
195 _NL_WMON_1
, /* January */
208 _NL_WAM_STR
, /* Ante meridiem string. */
209 _NL_WPM_STR
, /* Post meridiem string. */
211 _NL_WD_T_FMT
, /* Date and time format for strftime. */
212 _NL_WD_FMT
, /* Date format for strftime. */
213 _NL_WT_FMT
, /* Time format for strftime. */
214 _NL_WT_FMT_AMPM
, /* 12-hour time format for strftime. */
216 _NL_WERA_YEAR
, /* Year in alternate era format. */
217 _NL_WERA_D_FMT
, /* Date in alternate era format. */
218 _NL_WALT_DIGITS
, /* Alternate symbols for digits. */
219 _NL_WERA_D_T_FMT
, /* Date and time in alternate era format. */
220 _NL_WERA_T_FMT
, /* Time in alternate era format. */
223 _NL_TIME_WEEK_1STDAY
,
224 _NL_TIME_WEEK_1STWEEK
,
225 _NL_TIME_FIRST_WEEKDAY
,
226 _NL_TIME_FIRST_WORKDAY
,
227 _NL_TIME_CAL_DIRECTION
,
230 _DATE_FMT
, /* strftime format for date. */
231 #define _DATE_FMT _DATE_FMT
236 _NL_NUM_LC_TIME
, /* Number of indices in LC_TIME category. */
238 /* LC_COLLATE category: text sorting.
239 This information is accessed by the strcoll and strxfrm functions.
240 These `nl_langinfo' names are used only internally. */
241 _NL_COLLATE_NRULES
= _NL_ITEM (__LC_COLLATE
, 0),
242 _NL_COLLATE_RULESETS
,
244 _NL_COLLATE_WEIGHTMB
,
246 _NL_COLLATE_INDIRECTMB
,
251 _NL_COLLATE_WEIGHTWC
,
253 _NL_COLLATE_INDIRECTWC
,
254 _NL_COLLATE_SYMB_HASH_SIZEMB
,
255 _NL_COLLATE_SYMB_TABLEMB
,
256 _NL_COLLATE_SYMB_EXTRAMB
,
257 _NL_COLLATE_COLLSEQMB
,
258 _NL_COLLATE_COLLSEQWC
,
262 /* LC_CTYPE category: character classification.
263 This information is accessed by the functions in <ctype.h>.
264 These `nl_langinfo' names are used only internally. */
265 _NL_CTYPE_CLASS
= _NL_ITEM (__LC_CTYPE
, 0),
275 _NL_CTYPE_CLASS_NAMES
,
278 _NL_CTYPE_MB_CUR_MAX
,
279 _NL_CTYPE_CODESET_NAME
,
280 CODESET
= _NL_CTYPE_CODESET_NAME
,
281 #define CODESET CODESET
284 _NL_CTYPE_CLASS_OFFSET
,
285 _NL_CTYPE_MAP_OFFSET
,
286 _NL_CTYPE_INDIGITS_MB_LEN
,
287 _NL_CTYPE_INDIGITS0_MB
,
288 _NL_CTYPE_INDIGITS1_MB
,
289 _NL_CTYPE_INDIGITS2_MB
,
290 _NL_CTYPE_INDIGITS3_MB
,
291 _NL_CTYPE_INDIGITS4_MB
,
292 _NL_CTYPE_INDIGITS5_MB
,
293 _NL_CTYPE_INDIGITS6_MB
,
294 _NL_CTYPE_INDIGITS7_MB
,
295 _NL_CTYPE_INDIGITS8_MB
,
296 _NL_CTYPE_INDIGITS9_MB
,
297 _NL_CTYPE_INDIGITS_WC_LEN
,
298 _NL_CTYPE_INDIGITS0_WC
,
299 _NL_CTYPE_INDIGITS1_WC
,
300 _NL_CTYPE_INDIGITS2_WC
,
301 _NL_CTYPE_INDIGITS3_WC
,
302 _NL_CTYPE_INDIGITS4_WC
,
303 _NL_CTYPE_INDIGITS5_WC
,
304 _NL_CTYPE_INDIGITS6_WC
,
305 _NL_CTYPE_INDIGITS7_WC
,
306 _NL_CTYPE_INDIGITS8_WC
,
307 _NL_CTYPE_INDIGITS9_WC
,
308 _NL_CTYPE_OUTDIGIT0_MB
,
309 _NL_CTYPE_OUTDIGIT1_MB
,
310 _NL_CTYPE_OUTDIGIT2_MB
,
311 _NL_CTYPE_OUTDIGIT3_MB
,
312 _NL_CTYPE_OUTDIGIT4_MB
,
313 _NL_CTYPE_OUTDIGIT5_MB
,
314 _NL_CTYPE_OUTDIGIT6_MB
,
315 _NL_CTYPE_OUTDIGIT7_MB
,
316 _NL_CTYPE_OUTDIGIT8_MB
,
317 _NL_CTYPE_OUTDIGIT9_MB
,
318 _NL_CTYPE_OUTDIGIT0_WC
,
319 _NL_CTYPE_OUTDIGIT1_WC
,
320 _NL_CTYPE_OUTDIGIT2_WC
,
321 _NL_CTYPE_OUTDIGIT3_WC
,
322 _NL_CTYPE_OUTDIGIT4_WC
,
323 _NL_CTYPE_OUTDIGIT5_WC
,
324 _NL_CTYPE_OUTDIGIT6_WC
,
325 _NL_CTYPE_OUTDIGIT7_WC
,
326 _NL_CTYPE_OUTDIGIT8_WC
,
327 _NL_CTYPE_OUTDIGIT9_WC
,
328 _NL_CTYPE_TRANSLIT_TAB_SIZE
,
329 _NL_CTYPE_TRANSLIT_FROM_IDX
,
330 _NL_CTYPE_TRANSLIT_FROM_TBL
,
331 _NL_CTYPE_TRANSLIT_TO_IDX
,
332 _NL_CTYPE_TRANSLIT_TO_TBL
,
333 _NL_CTYPE_TRANSLIT_DEFAULT_MISSING_LEN
,
334 _NL_CTYPE_TRANSLIT_DEFAULT_MISSING
,
335 _NL_CTYPE_TRANSLIT_IGNORE_LEN
,
336 _NL_CTYPE_TRANSLIT_IGNORE
,
337 _NL_CTYPE_MAP_TO_NONASCII
,
338 _NL_CTYPE_EXTRA_MAP_1
,
339 _NL_CTYPE_EXTRA_MAP_2
,
340 _NL_CTYPE_EXTRA_MAP_3
,
341 _NL_CTYPE_EXTRA_MAP_4
,
342 _NL_CTYPE_EXTRA_MAP_5
,
343 _NL_CTYPE_EXTRA_MAP_6
,
344 _NL_CTYPE_EXTRA_MAP_7
,
345 _NL_CTYPE_EXTRA_MAP_8
,
346 _NL_CTYPE_EXTRA_MAP_9
,
347 _NL_CTYPE_EXTRA_MAP_10
,
348 _NL_CTYPE_EXTRA_MAP_11
,
349 _NL_CTYPE_EXTRA_MAP_12
,
350 _NL_CTYPE_EXTRA_MAP_13
,
351 _NL_CTYPE_EXTRA_MAP_14
,
354 /* LC_MONETARY category: formatting of monetary quantities.
355 These items each correspond to a member of `struct lconv',
356 defined in <locale.h>. */
357 __INT_CURR_SYMBOL
= _NL_ITEM (__LC_MONETARY
, 0),
359 # define INT_CURR_SYMBOL __INT_CURR_SYMBOL
363 # define CURRENCY_SYMBOL __CURRENCY_SYMBOL
367 # define MON_DECIMAL_POINT __MON_DECIMAL_POINT
371 # define MON_THOUSANDS_SEP __MON_THOUSANDS_SEP
375 # define MON_GROUPING __MON_GROUPING
379 # define POSITIVE_SIGN __POSITIVE_SIGN
383 # define NEGATIVE_SIGN __NEGATIVE_SIGN
387 # define INT_FRAC_DIGITS __INT_FRAC_DIGITS
391 # define FRAC_DIGITS __FRAC_DIGITS
395 # define P_CS_PRECEDES __P_CS_PRECEDES
399 # define P_SEP_BY_SPACE __P_SEP_BY_SPACE
403 # define N_CS_PRECEDES __N_CS_PRECEDES
407 # define N_SEP_BY_SPACE __N_SEP_BY_SPACE
411 # define P_SIGN_POSN __P_SIGN_POSN
415 # define N_SIGN_POSN __N_SIGN_POSN
417 _NL_MONETARY_CRNCYSTR
,
418 #define CRNCYSTR _NL_MONETARY_CRNCYSTR
421 # define INT_P_CS_PRECEDES __INT_P_CS_PRECEDES
423 __INT_P_SEP_BY_SPACE
,
425 # define INT_P_SEP_BY_SPACE __INT_P_SEP_BY_SPACE
429 # define INT_N_CS_PRECEDES __INT_N_CS_PRECEDES
431 __INT_N_SEP_BY_SPACE
,
433 # define INT_N_SEP_BY_SPACE __INT_N_SEP_BY_SPACE
437 # define INT_P_SIGN_POSN __INT_P_SIGN_POSN
441 # define INT_N_SIGN_POSN __INT_N_SIGN_POSN
443 _NL_MONETARY_DUO_INT_CURR_SYMBOL
,
444 _NL_MONETARY_DUO_CURRENCY_SYMBOL
,
445 _NL_MONETARY_DUO_INT_FRAC_DIGITS
,
446 _NL_MONETARY_DUO_FRAC_DIGITS
,
447 _NL_MONETARY_DUO_P_CS_PRECEDES
,
448 _NL_MONETARY_DUO_P_SEP_BY_SPACE
,
449 _NL_MONETARY_DUO_N_CS_PRECEDES
,
450 _NL_MONETARY_DUO_N_SEP_BY_SPACE
,
451 _NL_MONETARY_DUO_INT_P_CS_PRECEDES
,
452 _NL_MONETARY_DUO_INT_P_SEP_BY_SPACE
,
453 _NL_MONETARY_DUO_INT_N_CS_PRECEDES
,
454 _NL_MONETARY_DUO_INT_N_SEP_BY_SPACE
,
455 _NL_MONETARY_DUO_P_SIGN_POSN
,
456 _NL_MONETARY_DUO_N_SIGN_POSN
,
457 _NL_MONETARY_DUO_INT_P_SIGN_POSN
,
458 _NL_MONETARY_DUO_INT_N_SIGN_POSN
,
459 _NL_MONETARY_UNO_VALID_FROM
,
460 _NL_MONETARY_UNO_VALID_TO
,
461 _NL_MONETARY_DUO_VALID_FROM
,
462 _NL_MONETARY_DUO_VALID_TO
,
463 _NL_MONETARY_CONVERSION_RATE
,
464 _NL_MONETARY_DECIMAL_POINT_WC
,
465 _NL_MONETARY_THOUSANDS_SEP_WC
,
466 _NL_MONETARY_CODESET
,
469 /* LC_NUMERIC category: formatting of numbers.
470 These also correspond to members of `struct lconv'; see <locale.h>. */
471 __DECIMAL_POINT
= _NL_ITEM (__LC_NUMERIC
, 0),
473 # define DECIMAL_POINT __DECIMAL_POINT
475 RADIXCHAR
= __DECIMAL_POINT
,
476 #define RADIXCHAR RADIXCHAR
479 # define THOUSANDS_SEP __THOUSANDS_SEP
481 THOUSEP
= __THOUSANDS_SEP
,
482 #define THOUSEP THOUSEP
485 # define GROUPING __GROUPING
487 _NL_NUMERIC_DECIMAL_POINT_WC
,
488 _NL_NUMERIC_THOUSANDS_SEP_WC
,
492 __YESEXPR
= _NL_ITEM (__LC_MESSAGES
, 0), /* Regex matching ``yes'' input. */
493 #define YESEXPR __YESEXPR
494 __NOEXPR
, /* Regex matching ``no'' input. */
495 #define NOEXPR __NOEXPR
496 __YESSTR
, /* Output string for ``yes''. */
497 #if defined __USE_GNU || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
498 # define YESSTR __YESSTR
500 __NOSTR
, /* Output string for ``no''. */
501 #if defined __USE_GNU || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
502 # define NOSTR __NOSTR
504 _NL_MESSAGES_CODESET
,
507 _NL_PAPER_HEIGHT
= _NL_ITEM (__LC_PAPER
, 0),
512 _NL_NAME_NAME_FMT
= _NL_ITEM (__LC_NAME
, 0),
521 _NL_ADDRESS_POSTAL_FMT
= _NL_ITEM (__LC_ADDRESS
, 0),
522 _NL_ADDRESS_COUNTRY_NAME
,
523 _NL_ADDRESS_COUNTRY_POST
,
524 _NL_ADDRESS_COUNTRY_AB2
,
525 _NL_ADDRESS_COUNTRY_AB3
,
526 _NL_ADDRESS_COUNTRY_CAR
,
527 _NL_ADDRESS_COUNTRY_NUM
,
528 _NL_ADDRESS_COUNTRY_ISBN
,
529 _NL_ADDRESS_LANG_NAME
,
531 _NL_ADDRESS_LANG_TERM
,
532 _NL_ADDRESS_LANG_LIB
,
536 _NL_TELEPHONE_TEL_INT_FMT
= _NL_ITEM (__LC_TELEPHONE
, 0),
537 _NL_TELEPHONE_TEL_DOM_FMT
,
538 _NL_TELEPHONE_INT_SELECT
,
539 _NL_TELEPHONE_INT_PREFIX
,
540 _NL_TELEPHONE_CODESET
,
541 _NL_NUM_LC_TELEPHONE
,
543 _NL_MEASUREMENT_MEASUREMENT
= _NL_ITEM (__LC_MEASUREMENT
, 0),
544 _NL_MEASUREMENT_CODESET
,
545 _NL_NUM_LC_MEASUREMENT
,
547 _NL_IDENTIFICATION_TITLE
= _NL_ITEM (__LC_IDENTIFICATION
, 0),
548 _NL_IDENTIFICATION_SOURCE
,
549 _NL_IDENTIFICATION_ADDRESS
,
550 _NL_IDENTIFICATION_CONTACT
,
551 _NL_IDENTIFICATION_EMAIL
,
552 _NL_IDENTIFICATION_TEL
,
553 _NL_IDENTIFICATION_FAX
,
554 _NL_IDENTIFICATION_LANGUAGE
,
555 _NL_IDENTIFICATION_TERRITORY
,
556 _NL_IDENTIFICATION_AUDIENCE
,
557 _NL_IDENTIFICATION_APPLICATION
,
558 _NL_IDENTIFICATION_ABBREVIATION
,
559 _NL_IDENTIFICATION_REVISION
,
560 _NL_IDENTIFICATION_DATE
,
561 _NL_IDENTIFICATION_CATEGORY
,
562 _NL_IDENTIFICATION_CODESET
,
563 _NL_NUM_LC_IDENTIFICATION
,
565 /* This marks the highest value used. */
570 /* Return the current locale's value for ITEM.
571 If ITEM is invalid, an empty string is returned.
573 The string returned will not change until `setlocale' is called;
574 it is usually in read-only memory and cannot be modified. */
576 extern char *nl_langinfo (nl_item __item
) __THROW
;
580 /* This interface is for the extended locale model. See <locale.h> for
583 /* Get locale datatype definition. */
584 # include <xlocale.h>
586 /* Just like nl_langinfo but get the information from the locale object L. */
587 extern char *nl_langinfo_l (nl_item __item
, __locale_t l
);
592 #endif /* langinfo.h */