summaryrefslogtreecommitdiff
path: root/locale/categories.def
blob: be3c6bc54910b61a62e552297b9afe8ef1fd1c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* Definition of all available locale categories and their items.  -*- C -*-
Copyright (C) 1995 Free Software Foundation, Inc.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with the GNU C Library; see the file COPYING.LIB.  If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA.  */

/* These definitions are used by the locale-related files in the C library
   and the programs `localedef' and `locale'.

   The general format of the descriptions is like this:

     DEFINE_CATEGORY (ID, name, ( items ), setlocale-postload,
		      locale-input, locale-check, locale-output)

   where items itself is an array of entries in the form

     { ID, name, standard, value-type, min, max }

   The usage of the load, check, output functions depends on the individual
   program code which loads this file.

   The various value types for the items are `string', `stringarray', `byte'
   and `bytearray'.  These cover all possible values in the current locale
   definitions.  `min' and `max' can be individually used again.  */

#ifndef NO_POSTLOAD
#define NO_POSTLOAD NULL
#endif

DEFINE_CATEGORY (LC_COLLATE, "LC_COLLATE",
		   (
		     { 0 }	/* No data encoding yet.  */
		   ), NO_POSTLOAD, collate_input, NULL, NULL )


/* The actual definition of ctype is meaningless here.  It is hard coded in
   the code because it has to be handled very specially.  Only the names of
   the functions are important.  */
DEFINE_CATEGORY (LC_CTYPE, "LC_CTYPE",
		   (
		     { _NL_CTYPE_CLASS, "ctype-class", std, string },
		     { _NL_CTYPE_TOUPPER_EB, "ctype-toupper-eb", std, string },
		     { _NL_CTYPE_TOLOWER_EB, "ctype-tolower-eb", std, string },
		     { _NL_CTYPE_TOUPPER_EL, "ctype-toupper-el", std, string },
		     { _NL_CTYPE_TOLOWER_EL, "ctype-tolower-el", std, string },
		     { 0 }
		   ), _nl_postload_ctype,
		 ctype_input, ctype_check, ctype_output )


DEFINE_CATEGORY (LC_MONETARY, "LC_MONETARY",
		 (
		  { INT_CURR_SYMBOL,   "int_curr_symbol",   std, string },
		  { CURRENCY_SYMBOL,   "currency_symbol",   std, string },
		  { MON_DECIMAL_POINT, "mon_decimal_point", std, string },
		  { MON_THOUSANDS_SEP, "mon_thousands_sep", std, string },
		  { MON_GROUPING,      "mon_grouping",      std, bytearray },
		  { POSITIVE_SIGN,     "positive_sign",     std, string },
		  { NEGATIVE_SIGN,     "negative_sign",     std, string },
		  { INT_FRAC_DIGITS,   "int_frac_digits",   std, byte },
		  { FRAC_DIGITS,       "frac_digits",       std, byte },
		  { P_CS_PRECEDES,     "p_cs_precedes",     std, byte, 0, 1 },
		  { P_SEP_BY_SPACE,    "p_sep_by_space",    std, byte, 0, 2 },
		  { N_CS_PRECEDES,     "n_cs_precedes",     std, byte, 0, 1 },
		  { N_SEP_BY_SPACE,    "n_sep_by_space",    std, byte, 0, 2 },
		  { P_SIGN_POSN,       "p_sign_posn",       std, byte, 0, 4 },
		  { N_SIGN_POSN,       "n_sign_posn",       std, byte, 0, 4 },
		  { 0 }
		  ), NO_POSTLOAD, NULL, monetary_check, NULL )


DEFINE_CATEGORY (LC_NUMERIC, "LC_NUMERIC",
		 (
		  { DECIMAL_POINT, "decimal_point", std, string },
		  { THOUSANDS_SEP, "thousands_sep", std, string },
		  { GROUPING,      "grouping",      std, bytearray },
		  { 0 }
		  ), NO_POSTLOAD, NULL, numeric_check, NULL)


DEFINE_CATEGORY (LC_TIME, "LC_TIME",
		 (
		  { ABDAY_1,    "abday",      std, stringarray,  7,  7 },
		  { DAY_1,      "day",        std, stringarray,  7,  7 },
		  { ABMON_1,    "abmon",      std, stringarray, 12, 12 },
		  { MON_1,      "mon",        std, stringarray, 12, 12 },
		  { AM_STR,     "am_pm",      std, stringarray,  2,  2 },
		  { D_T_FMT,    "d_t_fmt",    std, string },
		  { D_FMT,      "d_fmt",      std, string },
		  { T_FMT,      "t_fmt",      std, string },
		  { T_FMT_AMPM, "t_fmt_ampm", std, string },
		  { ERA,        "era",        opt, string },
		  { ERA_YEAR,   "era_year",   opt, string },
		  { ERA_D_FMT,  "era_d_fmt",  opt, string },
		  { ALT_DIGITS, "alt_digits", opt, stringarray,  0, 100 },
		  { 0 }
		  ), NO_POSTLOAD, NULL, NULL, NULL )


DEFINE_CATEGORY (LC_MESSAGES, "LC_MESSAGES",
		 (
		  { YESEXPR, "yesexpr", std, string },
		  { NOEXPR,  "noexpr",  std, string },
		  { YESSTR,  "yesstr",  opt, string },
		  { NOSTR,   "nostr",   opt, string },
		  { 0 }
		  ), NO_POSTLOAD, NULL, messages_check, NULL )