lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | %{ |
| 2 | /* Copyright (C) 1996-2015 Free Software Foundation, Inc. |
| 3 | This file is part of the GNU C Library. |
| 4 | Contributed by Ulrich Drepper <drepper@gnu.org>, 1996. |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published |
| 8 | by the Free Software Foundation; version 2 of the License, or |
| 9 | (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | GNU General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, see |
| 18 | <http://www.gnu.org/licenses/>. */ |
| 19 | |
| 20 | #include <string.h> |
| 21 | |
| 22 | #include "locfile-token.h" |
| 23 | %} |
| 24 | struct keyword_t ; |
| 25 | %% |
| 26 | escape_char, tok_escape_char, 0 |
| 27 | comment_char, tok_comment_char, 0 |
| 28 | repertoiremap, tok_repertoiremap, 0 |
| 29 | include, tok_include, 0 |
| 30 | LC_CTYPE, tok_lc_ctype, 0 |
| 31 | END, tok_end, 0 |
| 32 | copy, tok_copy, 0 |
| 33 | upper, tok_upper, 0 |
| 34 | lower, tok_lower, 0 |
| 35 | alpha, tok_alpha, 0 |
| 36 | digit, tok_digit, 0 |
| 37 | outdigit, tok_outdigit, 0 |
| 38 | alnum, tok_alnum, 0 |
| 39 | space, tok_space, 0 |
| 40 | cntrl, tok_cntrl, 0 |
| 41 | punct, tok_punct, 0 |
| 42 | graph, tok_graph, 0 |
| 43 | print, tok_print, 0 |
| 44 | xdigit, tok_xdigit, 0 |
| 45 | blank, tok_blank, 0 |
| 46 | charclass, tok_charclass, 0 |
| 47 | class, tok_class, 0 |
| 48 | charconv, tok_charconv, 0 |
| 49 | toupper, tok_toupper, 0 |
| 50 | tolower, tok_tolower, 0 |
| 51 | map, tok_map, 0 |
| 52 | translit_start, tok_translit_start, 0 |
| 53 | translit_end, tok_translit_end, 0 |
| 54 | translit_ignore, tok_translit_ignore, 0 |
| 55 | default_missing, tok_default_missing, 0 |
| 56 | LC_COLLATE, tok_lc_collate, 0 |
| 57 | coll_weight_max, tok_coll_weight_max, 0 |
| 58 | section-symbol, tok_section_symbol, 0 |
| 59 | collating-element, tok_collating_element, 0 |
| 60 | collating-symbol, tok_collating_symbol, 0 |
| 61 | symbol-equivalence, tok_symbol_equivalence, 0 |
| 62 | script, tok_script, 0 |
| 63 | order_start, tok_order_start, 0 |
| 64 | order_end, tok_order_end, 0 |
| 65 | from, tok_from, 0 |
| 66 | forward, tok_forward, 0 |
| 67 | backward, tok_backward, 0 |
| 68 | position, tok_position, 0 |
| 69 | UNDEFINED, tok_undefined, 0 |
| 70 | IGNORE, tok_ignore, 0 |
| 71 | reorder-after, tok_reorder_after, 0 |
| 72 | reorder-end, tok_reorder_end, 0 |
| 73 | reorder-sections-after, tok_reorder_sections_after, 0 |
| 74 | reorder-sections-end, tok_reorder_sections_end, 0 |
| 75 | define, tok_define, 0 |
| 76 | undef, tok_undef, 0 |
| 77 | ifdef, tok_ifdef, 0 |
| 78 | else, tok_else, 0 |
| 79 | elifdef, tok_elifdef, 0 |
| 80 | elifndef, tok_elifndef, 0 |
| 81 | endif, tok_endif, 0 |
| 82 | LC_MONETARY, tok_lc_monetary, 0 |
| 83 | int_curr_symbol, tok_int_curr_symbol, 0 |
| 84 | currency_symbol, tok_currency_symbol, 0 |
| 85 | mon_decimal_point, tok_mon_decimal_point, 0 |
| 86 | mon_thousands_sep, tok_mon_thousands_sep, 0 |
| 87 | mon_grouping, tok_mon_grouping, 0 |
| 88 | positive_sign, tok_positive_sign, 0 |
| 89 | negative_sign, tok_negative_sign, 0 |
| 90 | int_frac_digits, tok_int_frac_digits, 0 |
| 91 | frac_digits, tok_frac_digits, 0 |
| 92 | p_cs_precedes, tok_p_cs_precedes, 0 |
| 93 | p_sep_by_space, tok_p_sep_by_space, 0 |
| 94 | n_cs_precedes, tok_n_cs_precedes, 0 |
| 95 | n_sep_by_space, tok_n_sep_by_space, 0 |
| 96 | p_sign_posn, tok_p_sign_posn, 0 |
| 97 | n_sign_posn, tok_n_sign_posn, 0 |
| 98 | int_p_cs_precedes, tok_int_p_cs_precedes, 0 |
| 99 | int_p_sep_by_space, tok_int_p_sep_by_space, 0 |
| 100 | int_n_cs_precedes, tok_int_n_cs_precedes, 0 |
| 101 | int_n_sep_by_space, tok_int_n_sep_by_space, 0 |
| 102 | int_p_sign_posn, tok_int_p_sign_posn, 0 |
| 103 | int_n_sign_posn, tok_int_n_sign_posn, 0 |
| 104 | duo_int_curr_symbol, tok_duo_int_curr_symbol, 0 |
| 105 | duo_currency_symbol, tok_duo_currency_symbol, 0 |
| 106 | duo_int_frac_digits, tok_duo_int_frac_digits, 0 |
| 107 | duo_frac_digits, tok_duo_frac_digits, 0 |
| 108 | duo_p_cs_precedes, tok_duo_p_cs_precedes, 0 |
| 109 | duo_p_sep_by_space, tok_duo_p_sep_by_space, 0 |
| 110 | duo_n_cs_precedes, tok_duo_n_cs_precedes, 0 |
| 111 | duo_n_sep_by_space, tok_duo_n_sep_by_space, 0 |
| 112 | duo_int_p_cs_precedes, tok_duo_int_p_cs_precedes, 0 |
| 113 | duo_int_p_sep_by_space, tok_duo_int_p_sep_by_space, 0 |
| 114 | duo_int_n_cs_precedes, tok_duo_int_n_cs_precedes, 0 |
| 115 | duo_int_n_sep_by_space, tok_duo_int_n_sep_by_space, 0 |
| 116 | duo_p_sign_posn, tok_duo_p_sign_posn, 0 |
| 117 | duo_n_sign_posn, tok_duo_n_sign_posn, 0 |
| 118 | duo_int_p_sign_posn, tok_duo_int_p_sign_posn, 0 |
| 119 | duo_int_n_sign_posn, tok_duo_int_n_sign_posn, 0 |
| 120 | uno_valid_from, tok_uno_valid_from, 0 |
| 121 | uno_valid_to, tok_uno_valid_to, 0 |
| 122 | duo_valid_from, tok_duo_valid_from, 0 |
| 123 | duo_valid_to, tok_duo_valid_to, 0 |
| 124 | conversion_rate, tok_conversion_rate, 0 |
| 125 | LC_NUMERIC, tok_lc_numeric, 0 |
| 126 | decimal_point, tok_decimal_point, 0 |
| 127 | thousands_sep, tok_thousands_sep, 0 |
| 128 | grouping, tok_grouping, 0 |
| 129 | LC_TIME, tok_lc_time, 0 |
| 130 | abday, tok_abday, 0 |
| 131 | day, tok_day, 0 |
| 132 | week, tok_week, 0 |
| 133 | abmon, tok_abmon, 0 |
| 134 | mon, tok_mon, 0 |
| 135 | d_t_fmt, tok_d_t_fmt, 0 |
| 136 | d_fmt, tok_d_fmt, 0 |
| 137 | t_fmt, tok_t_fmt, 0 |
| 138 | am_pm, tok_am_pm, 0 |
| 139 | t_fmt_ampm, tok_t_fmt_ampm, 0 |
| 140 | era, tok_era, 0 |
| 141 | era_year, tok_era_year, 0 |
| 142 | era_d_fmt, tok_era_d_fmt, 0 |
| 143 | era_d_t_fmt, tok_era_d_t_fmt, 0 |
| 144 | era_t_fmt, tok_era_t_fmt, 0 |
| 145 | alt_digits, tok_alt_digits, 0 |
| 146 | first_weekday, tok_first_weekday, 0 |
| 147 | first_workday, tok_first_workday, 0 |
| 148 | cal_direction, tok_cal_direction, 0 |
| 149 | timezone, tok_timezone, 0 |
| 150 | date_fmt, tok_date_fmt, 0 |
| 151 | LC_MESSAGES, tok_lc_messages, 0 |
| 152 | yesexpr, tok_yesexpr, 0 |
| 153 | noexpr, tok_noexpr, 0 |
| 154 | yesstr, tok_yesstr, 0 |
| 155 | nostr, tok_nostr, 0 |
| 156 | LC_PAPER, tok_lc_paper, 0 |
| 157 | height, tok_height, 0 |
| 158 | width, tok_width, 0 |
| 159 | LC_NAME, tok_lc_name, 0 |
| 160 | name_fmt, tok_name_fmt, 0 |
| 161 | name_gen, tok_name_gen, 0 |
| 162 | name_mr, tok_name_mr, 0 |
| 163 | name_mrs, tok_name_mrs, 0 |
| 164 | name_miss, tok_name_miss, 0 |
| 165 | name_ms, tok_name_ms, 0 |
| 166 | LC_ADDRESS, tok_lc_address, 0 |
| 167 | postal_fmt, tok_postal_fmt, 0 |
| 168 | country_name, tok_country_name, 0 |
| 169 | country_post, tok_country_post, 0 |
| 170 | country_ab2, tok_country_ab2, 0 |
| 171 | country_ab3, tok_country_ab3, 0 |
| 172 | country_num, tok_country_num, 0 |
| 173 | country_car, tok_country_car, 0 |
| 174 | country_isbn, tok_country_isbn, 0 |
| 175 | lang_name, tok_lang_name, 0 |
| 176 | lang_ab, tok_lang_ab, 0 |
| 177 | lang_term, tok_lang_term, 0 |
| 178 | lang_lib, tok_lang_lib, 0 |
| 179 | LC_TELEPHONE, tok_lc_telephone, 0 |
| 180 | tel_int_fmt, tok_tel_int_fmt, 0 |
| 181 | tel_dom_fmt, tok_tel_dom_fmt, 0 |
| 182 | int_select, tok_int_select, 0 |
| 183 | int_prefix, tok_int_prefix, 0 |
| 184 | LC_MEASUREMENT, tok_lc_measurement, 0 |
| 185 | measurement, tok_measurement, 0 |
| 186 | LC_IDENTIFICATION, tok_lc_identification, 0 |
| 187 | title, tok_title, 0 |
| 188 | source, tok_source, 0 |
| 189 | address, tok_address, 0 |
| 190 | contact, tok_contact, 0 |
| 191 | email, tok_email, 0 |
| 192 | tel, tok_tel, 0 |
| 193 | fax, tok_fax, 0 |
| 194 | language, tok_language, 0 |
| 195 | territory, tok_territory, 0 |
| 196 | audience, tok_audience, 0 |
| 197 | application, tok_application, 0 |
| 198 | abbreviation, tok_abbreviation, 0 |
| 199 | revision, tok_revision, 0 |
| 200 | date, tok_date, 0 |
| 201 | category, tok_category, 0 |