1 /* Access to locale-dependent parameters.
2 Copyright (C) 1995-2002,2003,2004,2005,2009 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, see
17 <http://www.gnu.org/licenses/>. */
22 /* Get the type definition. */
25 #include <bits/uClibc_locale.h> /* Define the __LC_* category names. */
30 /* Construct an `nl_item' value for `nl_langinfo' from a locale category
31 (LC_*) and an item index within the category. Some code may depend on
32 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)
41 #define _NL_ITEM(category, index) \
42 (((category) << __NL_ITEM_CATEGORY_SHIFT) | (index))
44 /* Extract the category and item index from a constructed `nl_item' value. */
45 #define _NL_ITEM_CATEGORY(item) ((int) (item) >> __NL_ITEM_CATEGORY_SHIFT)
46 #define _NL_ITEM_INDEX(item) ((int) (item) & __NL_ITEM_INDEX_MASK)
49 /* Enumeration of locale items that can be queried with `nl_langinfo'. */
52 /* LC_TIME category: date and time formatting. */
54 /* Abbreviated days of the week. */
55 ABDAY_1
= _NL_ITEM (__LC_TIME
, 0), /* Sun */
56 #define ABDAY_1 ABDAY_1
58 #define ABDAY_2 ABDAY_2
60 #define ABDAY_3 ABDAY_3
62 #define ABDAY_4 ABDAY_4
64 #define ABDAY_5 ABDAY_5
66 #define ABDAY_6 ABDAY_6
68 #define ABDAY_7 ABDAY_7
70 /* Long-named days of the week. */
77 DAY_4
, /* Wednesday */
86 /* Abbreviated month names. */
88 #define ABMON_1 ABMON_1
90 #define ABMON_2 ABMON_2
92 #define ABMON_3 ABMON_3
94 #define ABMON_4 ABMON_4
96 #define ABMON_5 ABMON_5
98 #define ABMON_6 ABMON_6
100 #define ABMON_7 ABMON_7
102 #define ABMON_8 ABMON_8
104 #define ABMON_9 ABMON_9
106 #define ABMON_10 ABMON_10
108 #define ABMON_11 ABMON_11
110 #define ABMON_12 ABMON_12
112 /* Long month names. */
132 #define MON_10 MON_10
134 #define MON_11 MON_11
136 #define MON_12 MON_12
138 AM_STR
, /* Ante meridian string. */
139 #define AM_STR AM_STR
140 PM_STR
, /* Post meridian string. */
141 #define PM_STR PM_STR
143 D_T_FMT
, /* Date and time format for strftime. */
144 #define D_T_FMT D_T_FMT
145 D_FMT
, /* Date format for strftime. */
147 T_FMT
, /* Time format for strftime. */
149 T_FMT_AMPM
, /* 12-hour time format for strftime. */
150 #define T_FMT_AMPM T_FMT_AMPM
152 ERA
, /* Alternate era. */
154 __ERA_YEAR
, /* Year in alternate era format. */
156 # define ERA_YEAR __ERA_YEAR
158 ERA_D_FMT
, /* Date in alternate era format. */
159 #define ERA_D_FMT ERA_D_FMT
160 ALT_DIGITS
, /* Alternate symbols for digits. */
161 #define ALT_DIGITS ALT_DIGITS
162 ERA_D_T_FMT
, /* Date and time in alternate era format. */
163 #define ERA_D_T_FMT ERA_D_T_FMT
164 ERA_T_FMT
, /* Time in alternate era format. */
165 #define ERA_T_FMT ERA_T_FMT
168 _NL_TIME_ERA_NUM_ENTRIES
, /* Number entries in the era arrays. */
169 _NL_TIME_ERA_ENTRIES
, /* Structure with era entries in usable form.*/
171 _NL_WABDAY_1
, /* Sun */
179 /* Long-named days of the week. */
180 _NL_WDAY_1
, /* Sunday */
181 _NL_WDAY_2
, /* Monday */
182 _NL_WDAY_3
, /* Tuesday */
183 _NL_WDAY_4
, /* Wednesday */
184 _NL_WDAY_5
, /* Thursday */
185 _NL_WDAY_6
, /* Friday */
186 _NL_WDAY_7
, /* Saturday */
188 /* Abbreviated month names. */
189 _NL_WABMON_1
, /* Jan */
202 /* Long month names. */
203 _NL_WMON_1
, /* January */
216 _NL_WAM_STR
, /* Ante meridian string. */
217 _NL_WPM_STR
, /* Post meridian string. */
219 _NL_WD_T_FMT
, /* Date and time format for strftime. */
220 _NL_WD_FMT
, /* Date format for strftime. */
221 _NL_WT_FMT
, /* Time format for strftime. */
222 _NL_WT_FMT_AMPM
, /* 12-hour time format for strftime. */
224 _NL_WERA_YEAR
, /* Year in alternate era format. */
225 _NL_WERA_D_FMT
, /* Date in alternate era format. */
226 _NL_WALT_DIGITS
, /* Alternate symbols for digits. */
227 _NL_WERA_D_T_FMT
, /* Date and time in alternate era format. */
228 _NL_WERA_T_FMT
, /* Time in alternate era format. */
231 _NL_TIME_WEEK_1STDAY
,
232 _NL_TIME_WEEK_1STWEEK
,
233 _NL_TIME_FIRST_WEEKDAY
,
234 _NL_TIME_FIRST_WORKDAY
,
235 _NL_TIME_CAL_DIRECTION
,
238 _DATE_FMT
, /* strftime format for date. */
239 #define _DATE_FMT _DATE_FMT
245 _NL_NUM_LC_TIME
, /* Number of indices in LC_TIME category. */
247 /* LC_COLLATE category: text sorting.
248 This information is accessed by the strcoll and strxfrm functions.
249 These `nl_langinfo' names are used only internally. */
251 _NL_COLLATE_NRULES
= _NL_ITEM (__LC_COLLATE
, 0),
252 _NL_COLLATE_RULESETS
,
254 _NL_COLLATE_WEIGHTMB
,
256 _NL_COLLATE_INDIRECTMB
,
261 _NL_COLLATE_WEIGHTWC
,
263 _NL_COLLATE_INDIRECTWC
,
264 _NL_COLLATE_SYMB_HASH_SIZEMB
,
265 _NL_COLLATE_SYMB_TABLEMB
,
266 _NL_COLLATE_SYMB_EXTRAMB
,
267 _NL_COLLATE_COLLSEQMB
,
268 _NL_COLLATE_COLLSEQWC
,
273 /* LC_CTYPE category: character classification.
274 This information is accessed by the functions in <ctype.h>.
275 These `nl_langinfo' names are used only internally. */
277 _NL_CTYPE_CLASS
= _NL_ITEM (__LC_CTYPE
, 0),
287 _NL_CTYPE_CLASS_NAMES
,
290 _NL_CTYPE_MB_CUR_MAX
,
291 _NL_CTYPE_CODESET_NAME
,
292 CODESET
= _NL_CTYPE_CODESET_NAME
,
293 #define CODESET CODESET
296 _NL_CTYPE_CLASS_OFFSET
,
297 _NL_CTYPE_MAP_OFFSET
,
298 _NL_CTYPE_INDIGITS_MB_LEN
,
299 _NL_CTYPE_INDIGITS0_MB
,
300 _NL_CTYPE_INDIGITS1_MB
,
301 _NL_CTYPE_INDIGITS2_MB
,
302 _NL_CTYPE_INDIGITS3_MB
,
303 _NL_CTYPE_INDIGITS4_MB
,
304 _NL_CTYPE_INDIGITS5_MB
,
305 _NL_CTYPE_INDIGITS6_MB
,
306 _NL_CTYPE_INDIGITS7_MB
,
307 _NL_CTYPE_INDIGITS8_MB
,
308 _NL_CTYPE_INDIGITS9_MB
,
309 _NL_CTYPE_INDIGITS_WC_LEN
,
310 _NL_CTYPE_INDIGITS0_WC
,
311 _NL_CTYPE_INDIGITS1_WC
,
312 _NL_CTYPE_INDIGITS2_WC
,
313 _NL_CTYPE_INDIGITS3_WC
,
314 _NL_CTYPE_INDIGITS4_WC
,
315 _NL_CTYPE_INDIGITS5_WC
,
316 _NL_CTYPE_INDIGITS6_WC
,
317 _NL_CTYPE_INDIGITS7_WC
,
318 _NL_CTYPE_INDIGITS8_WC
,
319 _NL_CTYPE_INDIGITS9_WC
,
320 _NL_CTYPE_OUTDIGIT0_MB
,
322 _NL_CTYPE_OUTDIGIT0_MB
= _NL_ITEM (__LC_CTYPE
, 0),
324 _NL_CTYPE_OUTDIGIT1_MB
,
325 _NL_CTYPE_OUTDIGIT2_MB
,
326 _NL_CTYPE_OUTDIGIT3_MB
,
327 _NL_CTYPE_OUTDIGIT4_MB
,
328 _NL_CTYPE_OUTDIGIT5_MB
,
329 _NL_CTYPE_OUTDIGIT6_MB
,
330 _NL_CTYPE_OUTDIGIT7_MB
,
331 _NL_CTYPE_OUTDIGIT8_MB
,
332 _NL_CTYPE_OUTDIGIT9_MB
,
334 _NL_CTYPE_OUTDIGIT0_WC
,
335 _NL_CTYPE_OUTDIGIT1_WC
,
336 _NL_CTYPE_OUTDIGIT2_WC
,
337 _NL_CTYPE_OUTDIGIT3_WC
,
338 _NL_CTYPE_OUTDIGIT4_WC
,
339 _NL_CTYPE_OUTDIGIT5_WC
,
340 _NL_CTYPE_OUTDIGIT6_WC
,
341 _NL_CTYPE_OUTDIGIT7_WC
,
342 _NL_CTYPE_OUTDIGIT8_WC
,
343 _NL_CTYPE_OUTDIGIT9_WC
,
344 _NL_CTYPE_TRANSLIT_TAB_SIZE
,
345 _NL_CTYPE_TRANSLIT_FROM_IDX
,
346 _NL_CTYPE_TRANSLIT_FROM_TBL
,
347 _NL_CTYPE_TRANSLIT_TO_IDX
,
348 _NL_CTYPE_TRANSLIT_TO_TBL
,
349 _NL_CTYPE_TRANSLIT_DEFAULT_MISSING_LEN
,
350 _NL_CTYPE_TRANSLIT_DEFAULT_MISSING
,
351 _NL_CTYPE_TRANSLIT_IGNORE_LEN
,
352 _NL_CTYPE_TRANSLIT_IGNORE
,
353 _NL_CTYPE_MAP_TO_NONASCII
,
354 _NL_CTYPE_NONASCII_CASE
,
355 _NL_CTYPE_EXTRA_MAP_1
,
356 _NL_CTYPE_EXTRA_MAP_2
,
357 _NL_CTYPE_EXTRA_MAP_3
,
358 _NL_CTYPE_EXTRA_MAP_4
,
359 _NL_CTYPE_EXTRA_MAP_5
,
360 _NL_CTYPE_EXTRA_MAP_6
,
361 _NL_CTYPE_EXTRA_MAP_7
,
362 _NL_CTYPE_EXTRA_MAP_8
,
363 _NL_CTYPE_EXTRA_MAP_9
,
364 _NL_CTYPE_EXTRA_MAP_10
,
365 _NL_CTYPE_EXTRA_MAP_11
,
366 _NL_CTYPE_EXTRA_MAP_12
,
367 _NL_CTYPE_EXTRA_MAP_13
,
368 _NL_CTYPE_EXTRA_MAP_14
,
370 _NL_CTYPE_CODESET_NAME
, /* uClibc note: MUST BE LAST ENTRY!!! */
371 CODESET
= _NL_CTYPE_CODESET_NAME
,
372 #define CODESET CODESET
376 /* LC_MONETARY category: formatting of monetary quantities.
377 These items each correspond to a member of `struct lconv',
378 defined in <locale.h>. */
379 __INT_CURR_SYMBOL
= _NL_ITEM (__LC_MONETARY
, 0),
381 # define INT_CURR_SYMBOL __INT_CURR_SYMBOL
385 # define CURRENCY_SYMBOL __CURRENCY_SYMBOL
389 # define MON_DECIMAL_POINT __MON_DECIMAL_POINT
393 # define MON_THOUSANDS_SEP __MON_THOUSANDS_SEP
397 # define MON_GROUPING __MON_GROUPING
401 # define POSITIVE_SIGN __POSITIVE_SIGN
405 # define NEGATIVE_SIGN __NEGATIVE_SIGN
409 # define INT_FRAC_DIGITS __INT_FRAC_DIGITS
413 # define FRAC_DIGITS __FRAC_DIGITS
417 # define P_CS_PRECEDES __P_CS_PRECEDES
421 # define P_SEP_BY_SPACE __P_SEP_BY_SPACE
425 # define N_CS_PRECEDES __N_CS_PRECEDES
429 # define N_SEP_BY_SPACE __N_SEP_BY_SPACE
433 # define P_SIGN_POSN __P_SIGN_POSN
437 # define N_SIGN_POSN __N_SIGN_POSN
439 #if 0 /* moved below for some reason on uClibc */
440 _NL_MONETARY_CRNCYSTR
,
441 #define CRNCYSTR _NL_MONETARY_CRNCYSTR
445 # define INT_P_CS_PRECEDES __INT_P_CS_PRECEDES
447 __INT_P_SEP_BY_SPACE
,
449 # define INT_P_SEP_BY_SPACE __INT_P_SEP_BY_SPACE
453 # define INT_N_CS_PRECEDES __INT_N_CS_PRECEDES
455 __INT_N_SEP_BY_SPACE
,
457 # define INT_N_SEP_BY_SPACE __INT_N_SEP_BY_SPACE
461 # define INT_P_SIGN_POSN __INT_P_SIGN_POSN
465 # define INT_N_SIGN_POSN __INT_N_SIGN_POSN
467 #if 1 /* moved here from above */
468 _NL_MONETARY_CRNCYSTR
,
469 #define CRNCYSTR _NL_MONETARY_CRNCYSTR
472 _NL_MONETARY_DUO_INT_CURR_SYMBOL
,
473 _NL_MONETARY_DUO_CURRENCY_SYMBOL
,
474 _NL_MONETARY_DUO_INT_FRAC_DIGITS
,
475 _NL_MONETARY_DUO_FRAC_DIGITS
,
476 _NL_MONETARY_DUO_P_CS_PRECEDES
,
477 _NL_MONETARY_DUO_P_SEP_BY_SPACE
,
478 _NL_MONETARY_DUO_N_CS_PRECEDES
,
479 _NL_MONETARY_DUO_N_SEP_BY_SPACE
,
480 _NL_MONETARY_DUO_INT_P_CS_PRECEDES
,
481 _NL_MONETARY_DUO_INT_P_SEP_BY_SPACE
,
482 _NL_MONETARY_DUO_INT_N_CS_PRECEDES
,
483 _NL_MONETARY_DUO_INT_N_SEP_BY_SPACE
,
484 _NL_MONETARY_DUO_P_SIGN_POSN
,
485 _NL_MONETARY_DUO_N_SIGN_POSN
,
486 _NL_MONETARY_DUO_INT_P_SIGN_POSN
,
487 _NL_MONETARY_DUO_INT_N_SIGN_POSN
,
488 _NL_MONETARY_UNO_VALID_FROM
,
489 _NL_MONETARY_UNO_VALID_TO
,
490 _NL_MONETARY_DUO_VALID_FROM
,
491 _NL_MONETARY_DUO_VALID_TO
,
492 _NL_MONETARY_CONVERSION_RATE
,
493 _NL_MONETARY_DECIMAL_POINT_WC
,
494 _NL_MONETARY_THOUSANDS_SEP_WC
,
495 _NL_MONETARY_CODESET
,
499 /* LC_NUMERIC category: formatting of numbers.
500 These also correspond to members of `struct lconv'; see <locale.h>. */
501 __DECIMAL_POINT
= _NL_ITEM (__LC_NUMERIC
, 0),
503 # define DECIMAL_POINT __DECIMAL_POINT
505 RADIXCHAR
= __DECIMAL_POINT
,
506 #define RADIXCHAR RADIXCHAR
509 # define THOUSANDS_SEP __THOUSANDS_SEP
511 THOUSEP
= __THOUSANDS_SEP
,
512 #define THOUSEP THOUSEP
515 # define GROUPING __GROUPING
518 _NL_NUMERIC_DECIMAL_POINT_WC
,
519 _NL_NUMERIC_THOUSANDS_SEP_WC
,
524 __YESEXPR
= _NL_ITEM (__LC_MESSAGES
, 0), /* Regex matching ``yes'' input. */
525 #define YESEXPR __YESEXPR
526 __NOEXPR
, /* Regex matching ``no'' input. */
527 #define NOEXPR __NOEXPR
528 __YESSTR
, /* Output string for ``yes''. */
529 #if defined __USE_GNU || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
530 # define YESSTR __YESSTR
532 __NOSTR
, /* Output string for ``no''. */
533 #if defined __USE_GNU || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
534 # define NOSTR __NOSTR
537 _NL_MESSAGES_CODESET
,
542 _NL_PAPER_HEIGHT
= _NL_ITEM (__LC_PAPER
, 0),
547 _NL_NAME_NAME_FMT
= _NL_ITEM (__LC_NAME
, 0),
556 _NL_ADDRESS_POSTAL_FMT
= _NL_ITEM (__LC_ADDRESS
, 0),
557 _NL_ADDRESS_COUNTRY_NAME
,
558 _NL_ADDRESS_COUNTRY_POST
,
559 _NL_ADDRESS_COUNTRY_AB2
,
560 _NL_ADDRESS_COUNTRY_AB3
,
561 _NL_ADDRESS_COUNTRY_CAR
,
562 _NL_ADDRESS_COUNTRY_NUM
,
563 _NL_ADDRESS_COUNTRY_ISBN
,
564 _NL_ADDRESS_LANG_NAME
,
566 _NL_ADDRESS_LANG_TERM
,
567 _NL_ADDRESS_LANG_LIB
,
571 _NL_TELEPHONE_TEL_INT_FMT
= _NL_ITEM (__LC_TELEPHONE
, 0),
572 _NL_TELEPHONE_TEL_DOM_FMT
,
573 _NL_TELEPHONE_INT_SELECT
,
574 _NL_TELEPHONE_INT_PREFIX
,
575 _NL_TELEPHONE_CODESET
,
576 _NL_NUM_LC_TELEPHONE
,
578 _NL_MEASUREMENT_MEASUREMENT
= _NL_ITEM (__LC_MEASUREMENT
, 0),
579 _NL_MEASUREMENT_CODESET
,
580 _NL_NUM_LC_MEASUREMENT
,
582 _NL_IDENTIFICATION_TITLE
= _NL_ITEM (__LC_IDENTIFICATION
, 0),
583 _NL_IDENTIFICATION_SOURCE
,
584 _NL_IDENTIFICATION_ADDRESS
,
585 _NL_IDENTIFICATION_CONTACT
,
586 _NL_IDENTIFICATION_EMAIL
,
587 _NL_IDENTIFICATION_TEL
,
588 _NL_IDENTIFICATION_FAX
,
589 _NL_IDENTIFICATION_LANGUAGE
,
590 _NL_IDENTIFICATION_TERRITORY
,
591 _NL_IDENTIFICATION_AUDIENCE
,
592 _NL_IDENTIFICATION_APPLICATION
,
593 _NL_IDENTIFICATION_ABBREVIATION
,
594 _NL_IDENTIFICATION_REVISION
,
595 _NL_IDENTIFICATION_DATE
,
596 _NL_IDENTIFICATION_CATEGORY
,
597 _NL_IDENTIFICATION_CODESET
,
598 _NL_NUM_LC_IDENTIFICATION
,
601 /* This marks the highest value used. */
605 /* This macro produces an item you can pass to `nl_langinfo' or
606 `nl_langinfo_l' to get the name of the locale in use for CATEGORY. */
607 #define _NL_LOCALE_NAME(category) _NL_ITEM ((category), -1)
609 # define NL_LOCALE_NAME(category) _NL_LOCALE_NAME (category)
613 /* Return the current locale's value for ITEM.
614 If ITEM is invalid, an empty string is returned.
616 The string returned will not change until `setlocale' is called;
617 it is usually in read-only memory and cannot be modified. */
619 extern char *nl_langinfo (nl_item __item
) __THROW
;
620 libc_hidden_proto(nl_langinfo
)
623 #if defined __USE_XOPEN2K && defined __UCLIBC_HAS_XLOCALE__
624 /* This interface is for the extended locale model. See <locale.h> for
627 /* Get locale datatype definition. */
628 # include <xlocale.h>
630 /* Just like nl_langinfo but get the information from the locale object L. */
631 extern char *nl_langinfo_l (nl_item __item
, __locale_t __l
);
632 libc_hidden_proto(nl_langinfo_l
)
637 #endif /* langinfo.h */