sdsykes-ferret 0.11.6.19
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +24 -0
- data/MIT-LICENSE +20 -0
- data/README +102 -0
- data/Rakefile +338 -0
- data/TODO +17 -0
- data/TUTORIAL +231 -0
- data/bin/ferret-browser +79 -0
- data/ext/analysis.c +1555 -0
- data/ext/analysis.h +219 -0
- data/ext/api.c +69 -0
- data/ext/api.h +27 -0
- data/ext/array.c +123 -0
- data/ext/array.h +53 -0
- data/ext/bitvector.c +540 -0
- data/ext/bitvector.h +272 -0
- data/ext/compound_io.c +383 -0
- data/ext/config.h +42 -0
- data/ext/document.c +156 -0
- data/ext/document.h +53 -0
- data/ext/except.c +120 -0
- data/ext/except.h +168 -0
- data/ext/extconf.rb +14 -0
- data/ext/ferret.c +402 -0
- data/ext/ferret.h +91 -0
- data/ext/filter.c +156 -0
- data/ext/fs_store.c +483 -0
- data/ext/global.c +418 -0
- data/ext/global.h +117 -0
- data/ext/hash.c +567 -0
- data/ext/hash.h +473 -0
- data/ext/hashset.c +170 -0
- data/ext/hashset.h +187 -0
- data/ext/header.h +58 -0
- data/ext/helper.c +62 -0
- data/ext/helper.h +13 -0
- data/ext/inc/lang.h +48 -0
- data/ext/inc/threading.h +31 -0
- data/ext/index.c +6425 -0
- data/ext/index.h +961 -0
- data/ext/lang.h +66 -0
- data/ext/libstemmer.c +92 -0
- data/ext/libstemmer.h +79 -0
- data/ext/mempool.c +87 -0
- data/ext/mempool.h +35 -0
- data/ext/modules.h +162 -0
- data/ext/multimapper.c +310 -0
- data/ext/multimapper.h +51 -0
- data/ext/posh.c +1006 -0
- data/ext/posh.h +1007 -0
- data/ext/priorityqueue.c +151 -0
- data/ext/priorityqueue.h +143 -0
- data/ext/q_boolean.c +1608 -0
- data/ext/q_const_score.c +161 -0
- data/ext/q_filtered_query.c +209 -0
- data/ext/q_fuzzy.c +268 -0
- data/ext/q_match_all.c +148 -0
- data/ext/q_multi_term.c +677 -0
- data/ext/q_parser.c +2825 -0
- data/ext/q_phrase.c +1126 -0
- data/ext/q_prefix.c +100 -0
- data/ext/q_range.c +350 -0
- data/ext/q_span.c +2402 -0
- data/ext/q_term.c +337 -0
- data/ext/q_wildcard.c +171 -0
- data/ext/r_analysis.c +2575 -0
- data/ext/r_index.c +3472 -0
- data/ext/r_qparser.c +585 -0
- data/ext/r_search.c +4105 -0
- data/ext/r_store.c +513 -0
- data/ext/r_utils.c +963 -0
- data/ext/ram_store.c +471 -0
- data/ext/search.c +1741 -0
- data/ext/search.h +885 -0
- data/ext/similarity.c +150 -0
- data/ext/similarity.h +82 -0
- data/ext/sort.c +983 -0
- data/ext/stem_ISO_8859_1_danish.c +338 -0
- data/ext/stem_ISO_8859_1_danish.h +16 -0
- data/ext/stem_ISO_8859_1_dutch.c +635 -0
- data/ext/stem_ISO_8859_1_dutch.h +16 -0
- data/ext/stem_ISO_8859_1_english.c +1156 -0
- data/ext/stem_ISO_8859_1_english.h +16 -0
- data/ext/stem_ISO_8859_1_finnish.c +792 -0
- data/ext/stem_ISO_8859_1_finnish.h +16 -0
- data/ext/stem_ISO_8859_1_french.c +1276 -0
- data/ext/stem_ISO_8859_1_french.h +16 -0
- data/ext/stem_ISO_8859_1_german.c +512 -0
- data/ext/stem_ISO_8859_1_german.h +16 -0
- data/ext/stem_ISO_8859_1_italian.c +1091 -0
- data/ext/stem_ISO_8859_1_italian.h +16 -0
- data/ext/stem_ISO_8859_1_norwegian.c +296 -0
- data/ext/stem_ISO_8859_1_norwegian.h +16 -0
- data/ext/stem_ISO_8859_1_porter.c +776 -0
- data/ext/stem_ISO_8859_1_porter.h +16 -0
- data/ext/stem_ISO_8859_1_portuguese.c +1035 -0
- data/ext/stem_ISO_8859_1_portuguese.h +16 -0
- data/ext/stem_ISO_8859_1_spanish.c +1119 -0
- data/ext/stem_ISO_8859_1_spanish.h +16 -0
- data/ext/stem_ISO_8859_1_swedish.c +307 -0
- data/ext/stem_ISO_8859_1_swedish.h +16 -0
- data/ext/stem_KOI8_R_russian.c +701 -0
- data/ext/stem_KOI8_R_russian.h +16 -0
- data/ext/stem_UTF_8_danish.c +344 -0
- data/ext/stem_UTF_8_danish.h +16 -0
- data/ext/stem_UTF_8_dutch.c +653 -0
- data/ext/stem_UTF_8_dutch.h +16 -0
- data/ext/stem_UTF_8_english.c +1176 -0
- data/ext/stem_UTF_8_english.h +16 -0
- data/ext/stem_UTF_8_finnish.c +808 -0
- data/ext/stem_UTF_8_finnish.h +16 -0
- data/ext/stem_UTF_8_french.c +1296 -0
- data/ext/stem_UTF_8_french.h +16 -0
- data/ext/stem_UTF_8_german.c +526 -0
- data/ext/stem_UTF_8_german.h +16 -0
- data/ext/stem_UTF_8_italian.c +1113 -0
- data/ext/stem_UTF_8_italian.h +16 -0
- data/ext/stem_UTF_8_norwegian.c +302 -0
- data/ext/stem_UTF_8_norwegian.h +16 -0
- data/ext/stem_UTF_8_porter.c +794 -0
- data/ext/stem_UTF_8_porter.h +16 -0
- data/ext/stem_UTF_8_portuguese.c +1055 -0
- data/ext/stem_UTF_8_portuguese.h +16 -0
- data/ext/stem_UTF_8_russian.c +709 -0
- data/ext/stem_UTF_8_russian.h +16 -0
- data/ext/stem_UTF_8_spanish.c +1137 -0
- data/ext/stem_UTF_8_spanish.h +16 -0
- data/ext/stem_UTF_8_swedish.c +313 -0
- data/ext/stem_UTF_8_swedish.h +16 -0
- data/ext/stopwords.c +401 -0
- data/ext/store.c +692 -0
- data/ext/store.h +777 -0
- data/ext/term_vectors.c +352 -0
- data/ext/threading.h +31 -0
- data/ext/utilities.c +446 -0
- data/ext/win32.h +54 -0
- data/lib/ferret.rb +29 -0
- data/lib/ferret/browser.rb +246 -0
- data/lib/ferret/browser/s/global.js +192 -0
- data/lib/ferret/browser/s/style.css +148 -0
- data/lib/ferret/browser/views/document/list.rhtml +49 -0
- data/lib/ferret/browser/views/document/show.rhtml +27 -0
- data/lib/ferret/browser/views/error/index.rhtml +7 -0
- data/lib/ferret/browser/views/help/index.rhtml +8 -0
- data/lib/ferret/browser/views/home/index.rhtml +29 -0
- data/lib/ferret/browser/views/layout.rhtml +22 -0
- data/lib/ferret/browser/views/term-vector/index.rhtml +4 -0
- data/lib/ferret/browser/views/term/index.rhtml +199 -0
- data/lib/ferret/browser/views/term/termdocs.rhtml +1 -0
- data/lib/ferret/browser/webrick.rb +14 -0
- data/lib/ferret/document.rb +130 -0
- data/lib/ferret/field_infos.rb +44 -0
- data/lib/ferret/index.rb +786 -0
- data/lib/ferret/number_tools.rb +157 -0
- data/lib/ferret_version.rb +3 -0
- data/setup.rb +1555 -0
- data/test/test_all.rb +5 -0
- data/test/test_helper.rb +24 -0
- data/test/threading/number_to_spoken.rb +132 -0
- data/test/threading/thread_safety_index_test.rb +79 -0
- data/test/threading/thread_safety_read_write_test.rb +76 -0
- data/test/threading/thread_safety_test.rb +133 -0
- data/test/unit/analysis/tc_analyzer.rb +548 -0
- data/test/unit/analysis/tc_token_stream.rb +646 -0
- data/test/unit/index/tc_index.rb +762 -0
- data/test/unit/index/tc_index_reader.rb +699 -0
- data/test/unit/index/tc_index_writer.rb +437 -0
- data/test/unit/index/th_doc.rb +315 -0
- data/test/unit/largefile/tc_largefile.rb +46 -0
- data/test/unit/query_parser/tc_query_parser.rb +238 -0
- data/test/unit/search/tc_filter.rb +135 -0
- data/test/unit/search/tc_fuzzy_query.rb +147 -0
- data/test/unit/search/tc_index_searcher.rb +61 -0
- data/test/unit/search/tc_multi_searcher.rb +128 -0
- data/test/unit/search/tc_multiple_search_requests.rb +58 -0
- data/test/unit/search/tc_search_and_sort.rb +179 -0
- data/test/unit/search/tc_sort.rb +49 -0
- data/test/unit/search/tc_sort_field.rb +27 -0
- data/test/unit/search/tc_spans.rb +190 -0
- data/test/unit/search/tm_searcher.rb +384 -0
- data/test/unit/store/tc_fs_store.rb +77 -0
- data/test/unit/store/tc_ram_store.rb +35 -0
- data/test/unit/store/tm_store.rb +34 -0
- data/test/unit/store/tm_store_lock.rb +68 -0
- data/test/unit/tc_document.rb +81 -0
- data/test/unit/ts_analysis.rb +2 -0
- data/test/unit/ts_index.rb +2 -0
- data/test/unit/ts_largefile.rb +4 -0
- data/test/unit/ts_query_parser.rb +2 -0
- data/test/unit/ts_search.rb +2 -0
- data/test/unit/ts_store.rb +2 -0
- data/test/unit/ts_utils.rb +2 -0
- data/test/unit/utils/tc_bit_vector.rb +295 -0
- data/test/unit/utils/tc_number_tools.rb +117 -0
- data/test/unit/utils/tc_priority_queue.rb +106 -0
- metadata +285 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
|
2
|
+
/* This file was generated automatically by the Snowball to ANSI C compiler */
|
3
|
+
|
4
|
+
#ifdef __cplusplus
|
5
|
+
extern "C" {
|
6
|
+
#endif
|
7
|
+
|
8
|
+
extern struct SN_env * german_ISO_8859_1_create_env(void);
|
9
|
+
extern void german_ISO_8859_1_close_env(struct SN_env * z);
|
10
|
+
|
11
|
+
extern int german_ISO_8859_1_stem(struct SN_env * z);
|
12
|
+
|
13
|
+
#ifdef __cplusplus
|
14
|
+
}
|
15
|
+
#endif
|
16
|
+
|
@@ -0,0 +1,1091 @@
|
|
1
|
+
|
2
|
+
/* This file was generated automatically by the Snowball to ANSI C compiler */
|
3
|
+
|
4
|
+
#include "header.h"
|
5
|
+
|
6
|
+
extern int italian_ISO_8859_1_stem(struct SN_env * z);
|
7
|
+
static int r_vowel_suffix(struct SN_env * z);
|
8
|
+
static int r_verb_suffix(struct SN_env * z);
|
9
|
+
static int r_standard_suffix(struct SN_env * z);
|
10
|
+
static int r_attached_pronoun(struct SN_env * z);
|
11
|
+
static int r_R2(struct SN_env * z);
|
12
|
+
static int r_R1(struct SN_env * z);
|
13
|
+
static int r_RV(struct SN_env * z);
|
14
|
+
static int r_mark_regions(struct SN_env * z);
|
15
|
+
static int r_postlude(struct SN_env * z);
|
16
|
+
static int r_prelude(struct SN_env * z);
|
17
|
+
|
18
|
+
extern struct SN_env * italian_ISO_8859_1_create_env(void);
|
19
|
+
extern void italian_ISO_8859_1_close_env(struct SN_env * z);
|
20
|
+
|
21
|
+
static symbol s_0_1[2] = { 'q', 'u' };
|
22
|
+
static symbol s_0_2[1] = { 0xE1 };
|
23
|
+
static symbol s_0_3[1] = { 0xE9 };
|
24
|
+
static symbol s_0_4[1] = { 0xED };
|
25
|
+
static symbol s_0_5[1] = { 0xF3 };
|
26
|
+
static symbol s_0_6[1] = { 0xFA };
|
27
|
+
|
28
|
+
static struct among a_0[7] =
|
29
|
+
{
|
30
|
+
/* 0 */ { 0, 0, -1, 7, 0},
|
31
|
+
/* 1 */ { 2, s_0_1, 0, 6, 0},
|
32
|
+
/* 2 */ { 1, s_0_2, 0, 1, 0},
|
33
|
+
/* 3 */ { 1, s_0_3, 0, 2, 0},
|
34
|
+
/* 4 */ { 1, s_0_4, 0, 3, 0},
|
35
|
+
/* 5 */ { 1, s_0_5, 0, 4, 0},
|
36
|
+
/* 6 */ { 1, s_0_6, 0, 5, 0}
|
37
|
+
};
|
38
|
+
|
39
|
+
static symbol s_1_1[1] = { 'I' };
|
40
|
+
static symbol s_1_2[1] = { 'U' };
|
41
|
+
|
42
|
+
static struct among a_1[3] =
|
43
|
+
{
|
44
|
+
/* 0 */ { 0, 0, -1, 3, 0},
|
45
|
+
/* 1 */ { 1, s_1_1, 0, 1, 0},
|
46
|
+
/* 2 */ { 1, s_1_2, 0, 2, 0}
|
47
|
+
};
|
48
|
+
|
49
|
+
static symbol s_2_0[2] = { 'l', 'a' };
|
50
|
+
static symbol s_2_1[4] = { 'c', 'e', 'l', 'a' };
|
51
|
+
static symbol s_2_2[6] = { 'g', 'l', 'i', 'e', 'l', 'a' };
|
52
|
+
static symbol s_2_3[4] = { 'm', 'e', 'l', 'a' };
|
53
|
+
static symbol s_2_4[4] = { 't', 'e', 'l', 'a' };
|
54
|
+
static symbol s_2_5[4] = { 'v', 'e', 'l', 'a' };
|
55
|
+
static symbol s_2_6[2] = { 'l', 'e' };
|
56
|
+
static symbol s_2_7[4] = { 'c', 'e', 'l', 'e' };
|
57
|
+
static symbol s_2_8[6] = { 'g', 'l', 'i', 'e', 'l', 'e' };
|
58
|
+
static symbol s_2_9[4] = { 'm', 'e', 'l', 'e' };
|
59
|
+
static symbol s_2_10[4] = { 't', 'e', 'l', 'e' };
|
60
|
+
static symbol s_2_11[4] = { 'v', 'e', 'l', 'e' };
|
61
|
+
static symbol s_2_12[2] = { 'n', 'e' };
|
62
|
+
static symbol s_2_13[4] = { 'c', 'e', 'n', 'e' };
|
63
|
+
static symbol s_2_14[6] = { 'g', 'l', 'i', 'e', 'n', 'e' };
|
64
|
+
static symbol s_2_15[4] = { 'm', 'e', 'n', 'e' };
|
65
|
+
static symbol s_2_16[4] = { 's', 'e', 'n', 'e' };
|
66
|
+
static symbol s_2_17[4] = { 't', 'e', 'n', 'e' };
|
67
|
+
static symbol s_2_18[4] = { 'v', 'e', 'n', 'e' };
|
68
|
+
static symbol s_2_19[2] = { 'c', 'i' };
|
69
|
+
static symbol s_2_20[2] = { 'l', 'i' };
|
70
|
+
static symbol s_2_21[4] = { 'c', 'e', 'l', 'i' };
|
71
|
+
static symbol s_2_22[6] = { 'g', 'l', 'i', 'e', 'l', 'i' };
|
72
|
+
static symbol s_2_23[4] = { 'm', 'e', 'l', 'i' };
|
73
|
+
static symbol s_2_24[4] = { 't', 'e', 'l', 'i' };
|
74
|
+
static symbol s_2_25[4] = { 'v', 'e', 'l', 'i' };
|
75
|
+
static symbol s_2_26[3] = { 'g', 'l', 'i' };
|
76
|
+
static symbol s_2_27[2] = { 'm', 'i' };
|
77
|
+
static symbol s_2_28[2] = { 's', 'i' };
|
78
|
+
static symbol s_2_29[2] = { 't', 'i' };
|
79
|
+
static symbol s_2_30[2] = { 'v', 'i' };
|
80
|
+
static symbol s_2_31[2] = { 'l', 'o' };
|
81
|
+
static symbol s_2_32[4] = { 'c', 'e', 'l', 'o' };
|
82
|
+
static symbol s_2_33[6] = { 'g', 'l', 'i', 'e', 'l', 'o' };
|
83
|
+
static symbol s_2_34[4] = { 'm', 'e', 'l', 'o' };
|
84
|
+
static symbol s_2_35[4] = { 't', 'e', 'l', 'o' };
|
85
|
+
static symbol s_2_36[4] = { 'v', 'e', 'l', 'o' };
|
86
|
+
|
87
|
+
static struct among a_2[37] =
|
88
|
+
{
|
89
|
+
/* 0 */ { 2, s_2_0, -1, -1, 0},
|
90
|
+
/* 1 */ { 4, s_2_1, 0, -1, 0},
|
91
|
+
/* 2 */ { 6, s_2_2, 0, -1, 0},
|
92
|
+
/* 3 */ { 4, s_2_3, 0, -1, 0},
|
93
|
+
/* 4 */ { 4, s_2_4, 0, -1, 0},
|
94
|
+
/* 5 */ { 4, s_2_5, 0, -1, 0},
|
95
|
+
/* 6 */ { 2, s_2_6, -1, -1, 0},
|
96
|
+
/* 7 */ { 4, s_2_7, 6, -1, 0},
|
97
|
+
/* 8 */ { 6, s_2_8, 6, -1, 0},
|
98
|
+
/* 9 */ { 4, s_2_9, 6, -1, 0},
|
99
|
+
/* 10 */ { 4, s_2_10, 6, -1, 0},
|
100
|
+
/* 11 */ { 4, s_2_11, 6, -1, 0},
|
101
|
+
/* 12 */ { 2, s_2_12, -1, -1, 0},
|
102
|
+
/* 13 */ { 4, s_2_13, 12, -1, 0},
|
103
|
+
/* 14 */ { 6, s_2_14, 12, -1, 0},
|
104
|
+
/* 15 */ { 4, s_2_15, 12, -1, 0},
|
105
|
+
/* 16 */ { 4, s_2_16, 12, -1, 0},
|
106
|
+
/* 17 */ { 4, s_2_17, 12, -1, 0},
|
107
|
+
/* 18 */ { 4, s_2_18, 12, -1, 0},
|
108
|
+
/* 19 */ { 2, s_2_19, -1, -1, 0},
|
109
|
+
/* 20 */ { 2, s_2_20, -1, -1, 0},
|
110
|
+
/* 21 */ { 4, s_2_21, 20, -1, 0},
|
111
|
+
/* 22 */ { 6, s_2_22, 20, -1, 0},
|
112
|
+
/* 23 */ { 4, s_2_23, 20, -1, 0},
|
113
|
+
/* 24 */ { 4, s_2_24, 20, -1, 0},
|
114
|
+
/* 25 */ { 4, s_2_25, 20, -1, 0},
|
115
|
+
/* 26 */ { 3, s_2_26, 20, -1, 0},
|
116
|
+
/* 27 */ { 2, s_2_27, -1, -1, 0},
|
117
|
+
/* 28 */ { 2, s_2_28, -1, -1, 0},
|
118
|
+
/* 29 */ { 2, s_2_29, -1, -1, 0},
|
119
|
+
/* 30 */ { 2, s_2_30, -1, -1, 0},
|
120
|
+
/* 31 */ { 2, s_2_31, -1, -1, 0},
|
121
|
+
/* 32 */ { 4, s_2_32, 31, -1, 0},
|
122
|
+
/* 33 */ { 6, s_2_33, 31, -1, 0},
|
123
|
+
/* 34 */ { 4, s_2_34, 31, -1, 0},
|
124
|
+
/* 35 */ { 4, s_2_35, 31, -1, 0},
|
125
|
+
/* 36 */ { 4, s_2_36, 31, -1, 0}
|
126
|
+
};
|
127
|
+
|
128
|
+
static symbol s_3_0[4] = { 'a', 'n', 'd', 'o' };
|
129
|
+
static symbol s_3_1[4] = { 'e', 'n', 'd', 'o' };
|
130
|
+
static symbol s_3_2[2] = { 'a', 'r' };
|
131
|
+
static symbol s_3_3[2] = { 'e', 'r' };
|
132
|
+
static symbol s_3_4[2] = { 'i', 'r' };
|
133
|
+
|
134
|
+
static struct among a_3[5] =
|
135
|
+
{
|
136
|
+
/* 0 */ { 4, s_3_0, -1, 1, 0},
|
137
|
+
/* 1 */ { 4, s_3_1, -1, 1, 0},
|
138
|
+
/* 2 */ { 2, s_3_2, -1, 2, 0},
|
139
|
+
/* 3 */ { 2, s_3_3, -1, 2, 0},
|
140
|
+
/* 4 */ { 2, s_3_4, -1, 2, 0}
|
141
|
+
};
|
142
|
+
|
143
|
+
static symbol s_4_0[2] = { 'i', 'c' };
|
144
|
+
static symbol s_4_1[4] = { 'a', 'b', 'i', 'l' };
|
145
|
+
static symbol s_4_2[2] = { 'o', 's' };
|
146
|
+
static symbol s_4_3[2] = { 'i', 'v' };
|
147
|
+
|
148
|
+
static struct among a_4[4] =
|
149
|
+
{
|
150
|
+
/* 0 */ { 2, s_4_0, -1, -1, 0},
|
151
|
+
/* 1 */ { 4, s_4_1, -1, -1, 0},
|
152
|
+
/* 2 */ { 2, s_4_2, -1, -1, 0},
|
153
|
+
/* 3 */ { 2, s_4_3, -1, 1, 0}
|
154
|
+
};
|
155
|
+
|
156
|
+
static symbol s_5_0[2] = { 'i', 'c' };
|
157
|
+
static symbol s_5_1[4] = { 'a', 'b', 'i', 'l' };
|
158
|
+
static symbol s_5_2[2] = { 'i', 'v' };
|
159
|
+
|
160
|
+
static struct among a_5[3] =
|
161
|
+
{
|
162
|
+
/* 0 */ { 2, s_5_0, -1, 1, 0},
|
163
|
+
/* 1 */ { 4, s_5_1, -1, 1, 0},
|
164
|
+
/* 2 */ { 2, s_5_2, -1, 1, 0}
|
165
|
+
};
|
166
|
+
|
167
|
+
static symbol s_6_0[3] = { 'i', 'c', 'a' };
|
168
|
+
static symbol s_6_1[5] = { 'l', 'o', 'g', 'i', 'a' };
|
169
|
+
static symbol s_6_2[3] = { 'o', 's', 'a' };
|
170
|
+
static symbol s_6_3[4] = { 'i', 's', 't', 'a' };
|
171
|
+
static symbol s_6_4[3] = { 'i', 'v', 'a' };
|
172
|
+
static symbol s_6_5[4] = { 'a', 'n', 'z', 'a' };
|
173
|
+
static symbol s_6_6[4] = { 'e', 'n', 'z', 'a' };
|
174
|
+
static symbol s_6_7[3] = { 'i', 'c', 'e' };
|
175
|
+
static symbol s_6_8[6] = { 'a', 't', 'r', 'i', 'c', 'e' };
|
176
|
+
static symbol s_6_9[4] = { 'i', 'c', 'h', 'e' };
|
177
|
+
static symbol s_6_10[5] = { 'l', 'o', 'g', 'i', 'e' };
|
178
|
+
static symbol s_6_11[5] = { 'a', 'b', 'i', 'l', 'e' };
|
179
|
+
static symbol s_6_12[5] = { 'i', 'b', 'i', 'l', 'e' };
|
180
|
+
static symbol s_6_13[6] = { 'u', 's', 'i', 'o', 'n', 'e' };
|
181
|
+
static symbol s_6_14[6] = { 'a', 'z', 'i', 'o', 'n', 'e' };
|
182
|
+
static symbol s_6_15[6] = { 'u', 'z', 'i', 'o', 'n', 'e' };
|
183
|
+
static symbol s_6_16[5] = { 'a', 't', 'o', 'r', 'e' };
|
184
|
+
static symbol s_6_17[3] = { 'o', 's', 'e' };
|
185
|
+
static symbol s_6_18[4] = { 'a', 'n', 't', 'e' };
|
186
|
+
static symbol s_6_19[5] = { 'm', 'e', 'n', 't', 'e' };
|
187
|
+
static symbol s_6_20[6] = { 'a', 'm', 'e', 'n', 't', 'e' };
|
188
|
+
static symbol s_6_21[4] = { 'i', 's', 't', 'e' };
|
189
|
+
static symbol s_6_22[3] = { 'i', 'v', 'e' };
|
190
|
+
static symbol s_6_23[4] = { 'a', 'n', 'z', 'e' };
|
191
|
+
static symbol s_6_24[4] = { 'e', 'n', 'z', 'e' };
|
192
|
+
static symbol s_6_25[3] = { 'i', 'c', 'i' };
|
193
|
+
static symbol s_6_26[6] = { 'a', 't', 'r', 'i', 'c', 'i' };
|
194
|
+
static symbol s_6_27[4] = { 'i', 'c', 'h', 'i' };
|
195
|
+
static symbol s_6_28[5] = { 'a', 'b', 'i', 'l', 'i' };
|
196
|
+
static symbol s_6_29[5] = { 'i', 'b', 'i', 'l', 'i' };
|
197
|
+
static symbol s_6_30[4] = { 'i', 's', 'm', 'i' };
|
198
|
+
static symbol s_6_31[6] = { 'u', 's', 'i', 'o', 'n', 'i' };
|
199
|
+
static symbol s_6_32[6] = { 'a', 'z', 'i', 'o', 'n', 'i' };
|
200
|
+
static symbol s_6_33[6] = { 'u', 'z', 'i', 'o', 'n', 'i' };
|
201
|
+
static symbol s_6_34[5] = { 'a', 't', 'o', 'r', 'i' };
|
202
|
+
static symbol s_6_35[3] = { 'o', 's', 'i' };
|
203
|
+
static symbol s_6_36[4] = { 'a', 'n', 't', 'i' };
|
204
|
+
static symbol s_6_37[6] = { 'a', 'm', 'e', 'n', 't', 'i' };
|
205
|
+
static symbol s_6_38[6] = { 'i', 'm', 'e', 'n', 't', 'i' };
|
206
|
+
static symbol s_6_39[4] = { 'i', 's', 't', 'i' };
|
207
|
+
static symbol s_6_40[3] = { 'i', 'v', 'i' };
|
208
|
+
static symbol s_6_41[3] = { 'i', 'c', 'o' };
|
209
|
+
static symbol s_6_42[4] = { 'i', 's', 'm', 'o' };
|
210
|
+
static symbol s_6_43[3] = { 'o', 's', 'o' };
|
211
|
+
static symbol s_6_44[6] = { 'a', 'm', 'e', 'n', 't', 'o' };
|
212
|
+
static symbol s_6_45[6] = { 'i', 'm', 'e', 'n', 't', 'o' };
|
213
|
+
static symbol s_6_46[3] = { 'i', 'v', 'o' };
|
214
|
+
static symbol s_6_47[3] = { 'i', 't', 0xE0 };
|
215
|
+
static symbol s_6_48[4] = { 'i', 's', 't', 0xE0 };
|
216
|
+
static symbol s_6_49[4] = { 'i', 's', 't', 0xE8 };
|
217
|
+
static symbol s_6_50[4] = { 'i', 's', 't', 0xEC };
|
218
|
+
|
219
|
+
static struct among a_6[51] =
|
220
|
+
{
|
221
|
+
/* 0 */ { 3, s_6_0, -1, 1, 0},
|
222
|
+
/* 1 */ { 5, s_6_1, -1, 3, 0},
|
223
|
+
/* 2 */ { 3, s_6_2, -1, 1, 0},
|
224
|
+
/* 3 */ { 4, s_6_3, -1, 1, 0},
|
225
|
+
/* 4 */ { 3, s_6_4, -1, 9, 0},
|
226
|
+
/* 5 */ { 4, s_6_5, -1, 1, 0},
|
227
|
+
/* 6 */ { 4, s_6_6, -1, 5, 0},
|
228
|
+
/* 7 */ { 3, s_6_7, -1, 1, 0},
|
229
|
+
/* 8 */ { 6, s_6_8, 7, 1, 0},
|
230
|
+
/* 9 */ { 4, s_6_9, -1, 1, 0},
|
231
|
+
/* 10 */ { 5, s_6_10, -1, 3, 0},
|
232
|
+
/* 11 */ { 5, s_6_11, -1, 1, 0},
|
233
|
+
/* 12 */ { 5, s_6_12, -1, 1, 0},
|
234
|
+
/* 13 */ { 6, s_6_13, -1, 4, 0},
|
235
|
+
/* 14 */ { 6, s_6_14, -1, 2, 0},
|
236
|
+
/* 15 */ { 6, s_6_15, -1, 4, 0},
|
237
|
+
/* 16 */ { 5, s_6_16, -1, 2, 0},
|
238
|
+
/* 17 */ { 3, s_6_17, -1, 1, 0},
|
239
|
+
/* 18 */ { 4, s_6_18, -1, 1, 0},
|
240
|
+
/* 19 */ { 5, s_6_19, -1, 1, 0},
|
241
|
+
/* 20 */ { 6, s_6_20, 19, 7, 0},
|
242
|
+
/* 21 */ { 4, s_6_21, -1, 1, 0},
|
243
|
+
/* 22 */ { 3, s_6_22, -1, 9, 0},
|
244
|
+
/* 23 */ { 4, s_6_23, -1, 1, 0},
|
245
|
+
/* 24 */ { 4, s_6_24, -1, 5, 0},
|
246
|
+
/* 25 */ { 3, s_6_25, -1, 1, 0},
|
247
|
+
/* 26 */ { 6, s_6_26, 25, 1, 0},
|
248
|
+
/* 27 */ { 4, s_6_27, -1, 1, 0},
|
249
|
+
/* 28 */ { 5, s_6_28, -1, 1, 0},
|
250
|
+
/* 29 */ { 5, s_6_29, -1, 1, 0},
|
251
|
+
/* 30 */ { 4, s_6_30, -1, 1, 0},
|
252
|
+
/* 31 */ { 6, s_6_31, -1, 4, 0},
|
253
|
+
/* 32 */ { 6, s_6_32, -1, 2, 0},
|
254
|
+
/* 33 */ { 6, s_6_33, -1, 4, 0},
|
255
|
+
/* 34 */ { 5, s_6_34, -1, 2, 0},
|
256
|
+
/* 35 */ { 3, s_6_35, -1, 1, 0},
|
257
|
+
/* 36 */ { 4, s_6_36, -1, 1, 0},
|
258
|
+
/* 37 */ { 6, s_6_37, -1, 6, 0},
|
259
|
+
/* 38 */ { 6, s_6_38, -1, 6, 0},
|
260
|
+
/* 39 */ { 4, s_6_39, -1, 1, 0},
|
261
|
+
/* 40 */ { 3, s_6_40, -1, 9, 0},
|
262
|
+
/* 41 */ { 3, s_6_41, -1, 1, 0},
|
263
|
+
/* 42 */ { 4, s_6_42, -1, 1, 0},
|
264
|
+
/* 43 */ { 3, s_6_43, -1, 1, 0},
|
265
|
+
/* 44 */ { 6, s_6_44, -1, 6, 0},
|
266
|
+
/* 45 */ { 6, s_6_45, -1, 6, 0},
|
267
|
+
/* 46 */ { 3, s_6_46, -1, 9, 0},
|
268
|
+
/* 47 */ { 3, s_6_47, -1, 8, 0},
|
269
|
+
/* 48 */ { 4, s_6_48, -1, 1, 0},
|
270
|
+
/* 49 */ { 4, s_6_49, -1, 1, 0},
|
271
|
+
/* 50 */ { 4, s_6_50, -1, 1, 0}
|
272
|
+
};
|
273
|
+
|
274
|
+
static symbol s_7_0[4] = { 'i', 's', 'c', 'a' };
|
275
|
+
static symbol s_7_1[4] = { 'e', 'n', 'd', 'a' };
|
276
|
+
static symbol s_7_2[3] = { 'a', 't', 'a' };
|
277
|
+
static symbol s_7_3[3] = { 'i', 't', 'a' };
|
278
|
+
static symbol s_7_4[3] = { 'u', 't', 'a' };
|
279
|
+
static symbol s_7_5[3] = { 'a', 'v', 'a' };
|
280
|
+
static symbol s_7_6[3] = { 'e', 'v', 'a' };
|
281
|
+
static symbol s_7_7[3] = { 'i', 'v', 'a' };
|
282
|
+
static symbol s_7_8[6] = { 'e', 'r', 'e', 'b', 'b', 'e' };
|
283
|
+
static symbol s_7_9[6] = { 'i', 'r', 'e', 'b', 'b', 'e' };
|
284
|
+
static symbol s_7_10[4] = { 'i', 's', 'c', 'e' };
|
285
|
+
static symbol s_7_11[4] = { 'e', 'n', 'd', 'e' };
|
286
|
+
static symbol s_7_12[3] = { 'a', 'r', 'e' };
|
287
|
+
static symbol s_7_13[3] = { 'e', 'r', 'e' };
|
288
|
+
static symbol s_7_14[3] = { 'i', 'r', 'e' };
|
289
|
+
static symbol s_7_15[4] = { 'a', 's', 's', 'e' };
|
290
|
+
static symbol s_7_16[3] = { 'a', 't', 'e' };
|
291
|
+
static symbol s_7_17[5] = { 'a', 'v', 'a', 't', 'e' };
|
292
|
+
static symbol s_7_18[5] = { 'e', 'v', 'a', 't', 'e' };
|
293
|
+
static symbol s_7_19[5] = { 'i', 'v', 'a', 't', 'e' };
|
294
|
+
static symbol s_7_20[3] = { 'e', 't', 'e' };
|
295
|
+
static symbol s_7_21[5] = { 'e', 'r', 'e', 't', 'e' };
|
296
|
+
static symbol s_7_22[5] = { 'i', 'r', 'e', 't', 'e' };
|
297
|
+
static symbol s_7_23[3] = { 'i', 't', 'e' };
|
298
|
+
static symbol s_7_24[6] = { 'e', 'r', 'e', 's', 't', 'e' };
|
299
|
+
static symbol s_7_25[6] = { 'i', 'r', 'e', 's', 't', 'e' };
|
300
|
+
static symbol s_7_26[3] = { 'u', 't', 'e' };
|
301
|
+
static symbol s_7_27[4] = { 'e', 'r', 'a', 'i' };
|
302
|
+
static symbol s_7_28[4] = { 'i', 'r', 'a', 'i' };
|
303
|
+
static symbol s_7_29[4] = { 'i', 's', 'c', 'i' };
|
304
|
+
static symbol s_7_30[4] = { 'e', 'n', 'd', 'i' };
|
305
|
+
static symbol s_7_31[4] = { 'e', 'r', 'e', 'i' };
|
306
|
+
static symbol s_7_32[4] = { 'i', 'r', 'e', 'i' };
|
307
|
+
static symbol s_7_33[4] = { 'a', 's', 's', 'i' };
|
308
|
+
static symbol s_7_34[3] = { 'a', 't', 'i' };
|
309
|
+
static symbol s_7_35[3] = { 'i', 't', 'i' };
|
310
|
+
static symbol s_7_36[6] = { 'e', 'r', 'e', 's', 't', 'i' };
|
311
|
+
static symbol s_7_37[6] = { 'i', 'r', 'e', 's', 't', 'i' };
|
312
|
+
static symbol s_7_38[3] = { 'u', 't', 'i' };
|
313
|
+
static symbol s_7_39[3] = { 'a', 'v', 'i' };
|
314
|
+
static symbol s_7_40[3] = { 'e', 'v', 'i' };
|
315
|
+
static symbol s_7_41[3] = { 'i', 'v', 'i' };
|
316
|
+
static symbol s_7_42[4] = { 'i', 's', 'c', 'o' };
|
317
|
+
static symbol s_7_43[4] = { 'a', 'n', 'd', 'o' };
|
318
|
+
static symbol s_7_44[4] = { 'e', 'n', 'd', 'o' };
|
319
|
+
static symbol s_7_45[4] = { 'Y', 'a', 'm', 'o' };
|
320
|
+
static symbol s_7_46[4] = { 'i', 'a', 'm', 'o' };
|
321
|
+
static symbol s_7_47[5] = { 'a', 'v', 'a', 'm', 'o' };
|
322
|
+
static symbol s_7_48[5] = { 'e', 'v', 'a', 'm', 'o' };
|
323
|
+
static symbol s_7_49[5] = { 'i', 'v', 'a', 'm', 'o' };
|
324
|
+
static symbol s_7_50[5] = { 'e', 'r', 'e', 'm', 'o' };
|
325
|
+
static symbol s_7_51[5] = { 'i', 'r', 'e', 'm', 'o' };
|
326
|
+
static symbol s_7_52[6] = { 'a', 's', 's', 'i', 'm', 'o' };
|
327
|
+
static symbol s_7_53[4] = { 'a', 'm', 'm', 'o' };
|
328
|
+
static symbol s_7_54[4] = { 'e', 'm', 'm', 'o' };
|
329
|
+
static symbol s_7_55[6] = { 'e', 'r', 'e', 'm', 'm', 'o' };
|
330
|
+
static symbol s_7_56[6] = { 'i', 'r', 'e', 'm', 'm', 'o' };
|
331
|
+
static symbol s_7_57[4] = { 'i', 'm', 'm', 'o' };
|
332
|
+
static symbol s_7_58[3] = { 'a', 'n', 'o' };
|
333
|
+
static symbol s_7_59[6] = { 'i', 's', 'c', 'a', 'n', 'o' };
|
334
|
+
static symbol s_7_60[5] = { 'a', 'v', 'a', 'n', 'o' };
|
335
|
+
static symbol s_7_61[5] = { 'e', 'v', 'a', 'n', 'o' };
|
336
|
+
static symbol s_7_62[5] = { 'i', 'v', 'a', 'n', 'o' };
|
337
|
+
static symbol s_7_63[6] = { 'e', 'r', 'a', 'n', 'n', 'o' };
|
338
|
+
static symbol s_7_64[6] = { 'i', 'r', 'a', 'n', 'n', 'o' };
|
339
|
+
static symbol s_7_65[3] = { 'o', 'n', 'o' };
|
340
|
+
static symbol s_7_66[6] = { 'i', 's', 'c', 'o', 'n', 'o' };
|
341
|
+
static symbol s_7_67[5] = { 'a', 'r', 'o', 'n', 'o' };
|
342
|
+
static symbol s_7_68[5] = { 'e', 'r', 'o', 'n', 'o' };
|
343
|
+
static symbol s_7_69[5] = { 'i', 'r', 'o', 'n', 'o' };
|
344
|
+
static symbol s_7_70[8] = { 'e', 'r', 'e', 'b', 'b', 'e', 'r', 'o' };
|
345
|
+
static symbol s_7_71[8] = { 'i', 'r', 'e', 'b', 'b', 'e', 'r', 'o' };
|
346
|
+
static symbol s_7_72[6] = { 'a', 's', 's', 'e', 'r', 'o' };
|
347
|
+
static symbol s_7_73[6] = { 'e', 's', 's', 'e', 'r', 'o' };
|
348
|
+
static symbol s_7_74[6] = { 'i', 's', 's', 'e', 'r', 'o' };
|
349
|
+
static symbol s_7_75[3] = { 'a', 't', 'o' };
|
350
|
+
static symbol s_7_76[3] = { 'i', 't', 'o' };
|
351
|
+
static symbol s_7_77[3] = { 'u', 't', 'o' };
|
352
|
+
static symbol s_7_78[3] = { 'a', 'v', 'o' };
|
353
|
+
static symbol s_7_79[3] = { 'e', 'v', 'o' };
|
354
|
+
static symbol s_7_80[3] = { 'i', 'v', 'o' };
|
355
|
+
static symbol s_7_81[2] = { 'a', 'r' };
|
356
|
+
static symbol s_7_82[2] = { 'i', 'r' };
|
357
|
+
static symbol s_7_83[3] = { 'e', 'r', 0xE0 };
|
358
|
+
static symbol s_7_84[3] = { 'i', 'r', 0xE0 };
|
359
|
+
static symbol s_7_85[3] = { 'e', 'r', 0xF2 };
|
360
|
+
static symbol s_7_86[3] = { 'i', 'r', 0xF2 };
|
361
|
+
|
362
|
+
static struct among a_7[87] =
|
363
|
+
{
|
364
|
+
/* 0 */ { 4, s_7_0, -1, 1, 0},
|
365
|
+
/* 1 */ { 4, s_7_1, -1, 1, 0},
|
366
|
+
/* 2 */ { 3, s_7_2, -1, 1, 0},
|
367
|
+
/* 3 */ { 3, s_7_3, -1, 1, 0},
|
368
|
+
/* 4 */ { 3, s_7_4, -1, 1, 0},
|
369
|
+
/* 5 */ { 3, s_7_5, -1, 1, 0},
|
370
|
+
/* 6 */ { 3, s_7_6, -1, 1, 0},
|
371
|
+
/* 7 */ { 3, s_7_7, -1, 1, 0},
|
372
|
+
/* 8 */ { 6, s_7_8, -1, 1, 0},
|
373
|
+
/* 9 */ { 6, s_7_9, -1, 1, 0},
|
374
|
+
/* 10 */ { 4, s_7_10, -1, 1, 0},
|
375
|
+
/* 11 */ { 4, s_7_11, -1, 1, 0},
|
376
|
+
/* 12 */ { 3, s_7_12, -1, 1, 0},
|
377
|
+
/* 13 */ { 3, s_7_13, -1, 1, 0},
|
378
|
+
/* 14 */ { 3, s_7_14, -1, 1, 0},
|
379
|
+
/* 15 */ { 4, s_7_15, -1, 1, 0},
|
380
|
+
/* 16 */ { 3, s_7_16, -1, 1, 0},
|
381
|
+
/* 17 */ { 5, s_7_17, 16, 1, 0},
|
382
|
+
/* 18 */ { 5, s_7_18, 16, 1, 0},
|
383
|
+
/* 19 */ { 5, s_7_19, 16, 1, 0},
|
384
|
+
/* 20 */ { 3, s_7_20, -1, 1, 0},
|
385
|
+
/* 21 */ { 5, s_7_21, 20, 1, 0},
|
386
|
+
/* 22 */ { 5, s_7_22, 20, 1, 0},
|
387
|
+
/* 23 */ { 3, s_7_23, -1, 1, 0},
|
388
|
+
/* 24 */ { 6, s_7_24, -1, 1, 0},
|
389
|
+
/* 25 */ { 6, s_7_25, -1, 1, 0},
|
390
|
+
/* 26 */ { 3, s_7_26, -1, 1, 0},
|
391
|
+
/* 27 */ { 4, s_7_27, -1, 1, 0},
|
392
|
+
/* 28 */ { 4, s_7_28, -1, 1, 0},
|
393
|
+
/* 29 */ { 4, s_7_29, -1, 1, 0},
|
394
|
+
/* 30 */ { 4, s_7_30, -1, 1, 0},
|
395
|
+
/* 31 */ { 4, s_7_31, -1, 1, 0},
|
396
|
+
/* 32 */ { 4, s_7_32, -1, 1, 0},
|
397
|
+
/* 33 */ { 4, s_7_33, -1, 1, 0},
|
398
|
+
/* 34 */ { 3, s_7_34, -1, 1, 0},
|
399
|
+
/* 35 */ { 3, s_7_35, -1, 1, 0},
|
400
|
+
/* 36 */ { 6, s_7_36, -1, 1, 0},
|
401
|
+
/* 37 */ { 6, s_7_37, -1, 1, 0},
|
402
|
+
/* 38 */ { 3, s_7_38, -1, 1, 0},
|
403
|
+
/* 39 */ { 3, s_7_39, -1, 1, 0},
|
404
|
+
/* 40 */ { 3, s_7_40, -1, 1, 0},
|
405
|
+
/* 41 */ { 3, s_7_41, -1, 1, 0},
|
406
|
+
/* 42 */ { 4, s_7_42, -1, 1, 0},
|
407
|
+
/* 43 */ { 4, s_7_43, -1, 1, 0},
|
408
|
+
/* 44 */ { 4, s_7_44, -1, 1, 0},
|
409
|
+
/* 45 */ { 4, s_7_45, -1, 1, 0},
|
410
|
+
/* 46 */ { 4, s_7_46, -1, 1, 0},
|
411
|
+
/* 47 */ { 5, s_7_47, -1, 1, 0},
|
412
|
+
/* 48 */ { 5, s_7_48, -1, 1, 0},
|
413
|
+
/* 49 */ { 5, s_7_49, -1, 1, 0},
|
414
|
+
/* 50 */ { 5, s_7_50, -1, 1, 0},
|
415
|
+
/* 51 */ { 5, s_7_51, -1, 1, 0},
|
416
|
+
/* 52 */ { 6, s_7_52, -1, 1, 0},
|
417
|
+
/* 53 */ { 4, s_7_53, -1, 1, 0},
|
418
|
+
/* 54 */ { 4, s_7_54, -1, 1, 0},
|
419
|
+
/* 55 */ { 6, s_7_55, 54, 1, 0},
|
420
|
+
/* 56 */ { 6, s_7_56, 54, 1, 0},
|
421
|
+
/* 57 */ { 4, s_7_57, -1, 1, 0},
|
422
|
+
/* 58 */ { 3, s_7_58, -1, 1, 0},
|
423
|
+
/* 59 */ { 6, s_7_59, 58, 1, 0},
|
424
|
+
/* 60 */ { 5, s_7_60, 58, 1, 0},
|
425
|
+
/* 61 */ { 5, s_7_61, 58, 1, 0},
|
426
|
+
/* 62 */ { 5, s_7_62, 58, 1, 0},
|
427
|
+
/* 63 */ { 6, s_7_63, -1, 1, 0},
|
428
|
+
/* 64 */ { 6, s_7_64, -1, 1, 0},
|
429
|
+
/* 65 */ { 3, s_7_65, -1, 1, 0},
|
430
|
+
/* 66 */ { 6, s_7_66, 65, 1, 0},
|
431
|
+
/* 67 */ { 5, s_7_67, 65, 1, 0},
|
432
|
+
/* 68 */ { 5, s_7_68, 65, 1, 0},
|
433
|
+
/* 69 */ { 5, s_7_69, 65, 1, 0},
|
434
|
+
/* 70 */ { 8, s_7_70, -1, 1, 0},
|
435
|
+
/* 71 */ { 8, s_7_71, -1, 1, 0},
|
436
|
+
/* 72 */ { 6, s_7_72, -1, 1, 0},
|
437
|
+
/* 73 */ { 6, s_7_73, -1, 1, 0},
|
438
|
+
/* 74 */ { 6, s_7_74, -1, 1, 0},
|
439
|
+
/* 75 */ { 3, s_7_75, -1, 1, 0},
|
440
|
+
/* 76 */ { 3, s_7_76, -1, 1, 0},
|
441
|
+
/* 77 */ { 3, s_7_77, -1, 1, 0},
|
442
|
+
/* 78 */ { 3, s_7_78, -1, 1, 0},
|
443
|
+
/* 79 */ { 3, s_7_79, -1, 1, 0},
|
444
|
+
/* 80 */ { 3, s_7_80, -1, 1, 0},
|
445
|
+
/* 81 */ { 2, s_7_81, -1, 1, 0},
|
446
|
+
/* 82 */ { 2, s_7_82, -1, 1, 0},
|
447
|
+
/* 83 */ { 3, s_7_83, -1, 1, 0},
|
448
|
+
/* 84 */ { 3, s_7_84, -1, 1, 0},
|
449
|
+
/* 85 */ { 3, s_7_85, -1, 1, 0},
|
450
|
+
/* 86 */ { 3, s_7_86, -1, 1, 0}
|
451
|
+
};
|
452
|
+
|
453
|
+
static unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 8, 2, 1 };
|
454
|
+
|
455
|
+
static unsigned char g_AEIO[] = { 17, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 8, 2 };
|
456
|
+
|
457
|
+
static unsigned char g_CG[] = { 17 };
|
458
|
+
|
459
|
+
static symbol s_0[] = { 0xE0 };
|
460
|
+
static symbol s_1[] = { 0xE8 };
|
461
|
+
static symbol s_2[] = { 0xEC };
|
462
|
+
static symbol s_3[] = { 0xF2 };
|
463
|
+
static symbol s_4[] = { 0xF9 };
|
464
|
+
static symbol s_5[] = { 'q', 'U' };
|
465
|
+
static symbol s_6[] = { 'u' };
|
466
|
+
static symbol s_7[] = { 'U' };
|
467
|
+
static symbol s_8[] = { 'i' };
|
468
|
+
static symbol s_9[] = { 'I' };
|
469
|
+
static symbol s_10[] = { 'i' };
|
470
|
+
static symbol s_11[] = { 'u' };
|
471
|
+
static symbol s_12[] = { 'e' };
|
472
|
+
static symbol s_13[] = { 'i', 'c' };
|
473
|
+
static symbol s_14[] = { 'l', 'o', 'g' };
|
474
|
+
static symbol s_15[] = { 'u' };
|
475
|
+
static symbol s_16[] = { 'e', 'n', 't', 'e' };
|
476
|
+
static symbol s_17[] = { 'a', 't' };
|
477
|
+
static symbol s_18[] = { 'a', 't' };
|
478
|
+
static symbol s_19[] = { 'i', 'c' };
|
479
|
+
static symbol s_20[] = { 'i' };
|
480
|
+
static symbol s_21[] = { 'h' };
|
481
|
+
|
482
|
+
static int r_prelude(struct SN_env * z) {
|
483
|
+
int among_var;
|
484
|
+
{ int c_test = z->c; /* test, line 35 */
|
485
|
+
while(1) { /* repeat, line 35 */
|
486
|
+
int c = z->c;
|
487
|
+
z->bra = z->c; /* [, line 36 */
|
488
|
+
among_var = find_among(z, a_0, 7); /* substring, line 36 */
|
489
|
+
if (!(among_var)) goto lab0;
|
490
|
+
z->ket = z->c; /* ], line 36 */
|
491
|
+
switch(among_var) {
|
492
|
+
case 0: goto lab0;
|
493
|
+
case 1:
|
494
|
+
{ int ret;
|
495
|
+
ret = slice_from_s(z, 1, s_0); /* <-, line 37 */
|
496
|
+
if (ret < 0) return ret;
|
497
|
+
}
|
498
|
+
break;
|
499
|
+
case 2:
|
500
|
+
{ int ret;
|
501
|
+
ret = slice_from_s(z, 1, s_1); /* <-, line 38 */
|
502
|
+
if (ret < 0) return ret;
|
503
|
+
}
|
504
|
+
break;
|
505
|
+
case 3:
|
506
|
+
{ int ret;
|
507
|
+
ret = slice_from_s(z, 1, s_2); /* <-, line 39 */
|
508
|
+
if (ret < 0) return ret;
|
509
|
+
}
|
510
|
+
break;
|
511
|
+
case 4:
|
512
|
+
{ int ret;
|
513
|
+
ret = slice_from_s(z, 1, s_3); /* <-, line 40 */
|
514
|
+
if (ret < 0) return ret;
|
515
|
+
}
|
516
|
+
break;
|
517
|
+
case 5:
|
518
|
+
{ int ret;
|
519
|
+
ret = slice_from_s(z, 1, s_4); /* <-, line 41 */
|
520
|
+
if (ret < 0) return ret;
|
521
|
+
}
|
522
|
+
break;
|
523
|
+
case 6:
|
524
|
+
{ int ret;
|
525
|
+
ret = slice_from_s(z, 2, s_5); /* <-, line 42 */
|
526
|
+
if (ret < 0) return ret;
|
527
|
+
}
|
528
|
+
break;
|
529
|
+
case 7:
|
530
|
+
if (z->c >= z->l) goto lab0;
|
531
|
+
z->c++; /* next, line 43 */
|
532
|
+
break;
|
533
|
+
}
|
534
|
+
continue;
|
535
|
+
lab0:
|
536
|
+
z->c = c;
|
537
|
+
break;
|
538
|
+
}
|
539
|
+
z->c = c_test;
|
540
|
+
}
|
541
|
+
while(1) { /* repeat, line 46 */
|
542
|
+
int c = z->c;
|
543
|
+
while(1) { /* goto, line 46 */
|
544
|
+
int c = z->c;
|
545
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab2;
|
546
|
+
z->bra = z->c; /* [, line 47 */
|
547
|
+
{ int c = z->c; /* or, line 47 */
|
548
|
+
if (!(eq_s(z, 1, s_6))) goto lab4;
|
549
|
+
z->ket = z->c; /* ], line 47 */
|
550
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab4;
|
551
|
+
{ int ret;
|
552
|
+
ret = slice_from_s(z, 1, s_7); /* <-, line 47 */
|
553
|
+
if (ret < 0) return ret;
|
554
|
+
}
|
555
|
+
goto lab3;
|
556
|
+
lab4:
|
557
|
+
z->c = c;
|
558
|
+
if (!(eq_s(z, 1, s_8))) goto lab2;
|
559
|
+
z->ket = z->c; /* ], line 48 */
|
560
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab2;
|
561
|
+
{ int ret;
|
562
|
+
ret = slice_from_s(z, 1, s_9); /* <-, line 48 */
|
563
|
+
if (ret < 0) return ret;
|
564
|
+
}
|
565
|
+
}
|
566
|
+
lab3:
|
567
|
+
z->c = c;
|
568
|
+
break;
|
569
|
+
lab2:
|
570
|
+
z->c = c;
|
571
|
+
if (z->c >= z->l) goto lab1;
|
572
|
+
z->c++; /* goto, line 46 */
|
573
|
+
}
|
574
|
+
continue;
|
575
|
+
lab1:
|
576
|
+
z->c = c;
|
577
|
+
break;
|
578
|
+
}
|
579
|
+
return 1;
|
580
|
+
}
|
581
|
+
|
582
|
+
static int r_mark_regions(struct SN_env * z) {
|
583
|
+
z->I[0] = z->l;
|
584
|
+
z->I[1] = z->l;
|
585
|
+
z->I[2] = z->l;
|
586
|
+
{ int c = z->c; /* do, line 58 */
|
587
|
+
{ int c = z->c; /* or, line 60 */
|
588
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab2;
|
589
|
+
{ int c = z->c; /* or, line 59 */
|
590
|
+
if (!(out_grouping(z, g_v, 97, 249))) goto lab4;
|
591
|
+
while(1) { /* gopast, line 59 */
|
592
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab5;
|
593
|
+
break;
|
594
|
+
lab5:
|
595
|
+
if (z->c >= z->l) goto lab4;
|
596
|
+
z->c++; /* gopast, line 59 */
|
597
|
+
}
|
598
|
+
goto lab3;
|
599
|
+
lab4:
|
600
|
+
z->c = c;
|
601
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab2;
|
602
|
+
while(1) { /* gopast, line 59 */
|
603
|
+
if (!(out_grouping(z, g_v, 97, 249))) goto lab6;
|
604
|
+
break;
|
605
|
+
lab6:
|
606
|
+
if (z->c >= z->l) goto lab2;
|
607
|
+
z->c++; /* gopast, line 59 */
|
608
|
+
}
|
609
|
+
}
|
610
|
+
lab3:
|
611
|
+
goto lab1;
|
612
|
+
lab2:
|
613
|
+
z->c = c;
|
614
|
+
if (!(out_grouping(z, g_v, 97, 249))) goto lab0;
|
615
|
+
{ int c = z->c; /* or, line 61 */
|
616
|
+
if (!(out_grouping(z, g_v, 97, 249))) goto lab8;
|
617
|
+
while(1) { /* gopast, line 61 */
|
618
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab9;
|
619
|
+
break;
|
620
|
+
lab9:
|
621
|
+
if (z->c >= z->l) goto lab8;
|
622
|
+
z->c++; /* gopast, line 61 */
|
623
|
+
}
|
624
|
+
goto lab7;
|
625
|
+
lab8:
|
626
|
+
z->c = c;
|
627
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab0;
|
628
|
+
if (z->c >= z->l) goto lab0;
|
629
|
+
z->c++; /* next, line 61 */
|
630
|
+
}
|
631
|
+
lab7:
|
632
|
+
;
|
633
|
+
}
|
634
|
+
lab1:
|
635
|
+
z->I[0] = z->c; /* setmark pV, line 62 */
|
636
|
+
lab0:
|
637
|
+
z->c = c;
|
638
|
+
}
|
639
|
+
{ int c = z->c; /* do, line 64 */
|
640
|
+
while(1) { /* gopast, line 65 */
|
641
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab11;
|
642
|
+
break;
|
643
|
+
lab11:
|
644
|
+
if (z->c >= z->l) goto lab10;
|
645
|
+
z->c++; /* gopast, line 65 */
|
646
|
+
}
|
647
|
+
while(1) { /* gopast, line 65 */
|
648
|
+
if (!(out_grouping(z, g_v, 97, 249))) goto lab12;
|
649
|
+
break;
|
650
|
+
lab12:
|
651
|
+
if (z->c >= z->l) goto lab10;
|
652
|
+
z->c++; /* gopast, line 65 */
|
653
|
+
}
|
654
|
+
z->I[1] = z->c; /* setmark p1, line 65 */
|
655
|
+
while(1) { /* gopast, line 66 */
|
656
|
+
if (!(in_grouping(z, g_v, 97, 249))) goto lab13;
|
657
|
+
break;
|
658
|
+
lab13:
|
659
|
+
if (z->c >= z->l) goto lab10;
|
660
|
+
z->c++; /* gopast, line 66 */
|
661
|
+
}
|
662
|
+
while(1) { /* gopast, line 66 */
|
663
|
+
if (!(out_grouping(z, g_v, 97, 249))) goto lab14;
|
664
|
+
break;
|
665
|
+
lab14:
|
666
|
+
if (z->c >= z->l) goto lab10;
|
667
|
+
z->c++; /* gopast, line 66 */
|
668
|
+
}
|
669
|
+
z->I[2] = z->c; /* setmark p2, line 66 */
|
670
|
+
lab10:
|
671
|
+
z->c = c;
|
672
|
+
}
|
673
|
+
return 1;
|
674
|
+
}
|
675
|
+
|
676
|
+
static int r_postlude(struct SN_env * z) {
|
677
|
+
int among_var;
|
678
|
+
while(1) { /* repeat, line 70 */
|
679
|
+
int c = z->c;
|
680
|
+
z->bra = z->c; /* [, line 72 */
|
681
|
+
among_var = find_among(z, a_1, 3); /* substring, line 72 */
|
682
|
+
if (!(among_var)) goto lab0;
|
683
|
+
z->ket = z->c; /* ], line 72 */
|
684
|
+
switch(among_var) {
|
685
|
+
case 0: goto lab0;
|
686
|
+
case 1:
|
687
|
+
{ int ret;
|
688
|
+
ret = slice_from_s(z, 1, s_10); /* <-, line 73 */
|
689
|
+
if (ret < 0) return ret;
|
690
|
+
}
|
691
|
+
break;
|
692
|
+
case 2:
|
693
|
+
{ int ret;
|
694
|
+
ret = slice_from_s(z, 1, s_11); /* <-, line 74 */
|
695
|
+
if (ret < 0) return ret;
|
696
|
+
}
|
697
|
+
break;
|
698
|
+
case 3:
|
699
|
+
if (z->c >= z->l) goto lab0;
|
700
|
+
z->c++; /* next, line 75 */
|
701
|
+
break;
|
702
|
+
}
|
703
|
+
continue;
|
704
|
+
lab0:
|
705
|
+
z->c = c;
|
706
|
+
break;
|
707
|
+
}
|
708
|
+
return 1;
|
709
|
+
}
|
710
|
+
|
711
|
+
static int r_RV(struct SN_env * z) {
|
712
|
+
if (!(z->I[0] <= z->c)) return 0;
|
713
|
+
return 1;
|
714
|
+
}
|
715
|
+
|
716
|
+
static int r_R1(struct SN_env * z) {
|
717
|
+
if (!(z->I[1] <= z->c)) return 0;
|
718
|
+
return 1;
|
719
|
+
}
|
720
|
+
|
721
|
+
static int r_R2(struct SN_env * z) {
|
722
|
+
if (!(z->I[2] <= z->c)) return 0;
|
723
|
+
return 1;
|
724
|
+
}
|
725
|
+
|
726
|
+
static int r_attached_pronoun(struct SN_env * z) {
|
727
|
+
int among_var;
|
728
|
+
z->ket = z->c; /* [, line 87 */
|
729
|
+
if (!(find_among_b(z, a_2, 37))) return 0; /* substring, line 87 */
|
730
|
+
z->bra = z->c; /* ], line 87 */
|
731
|
+
among_var = find_among_b(z, a_3, 5); /* among, line 97 */
|
732
|
+
if (!(among_var)) return 0;
|
733
|
+
{ int ret = r_RV(z);
|
734
|
+
if (ret == 0) return 0; /* call RV, line 97 */
|
735
|
+
if (ret < 0) return ret;
|
736
|
+
}
|
737
|
+
switch(among_var) {
|
738
|
+
case 0: return 0;
|
739
|
+
case 1:
|
740
|
+
{ int ret;
|
741
|
+
ret = slice_del(z); /* delete, line 98 */
|
742
|
+
if (ret < 0) return ret;
|
743
|
+
}
|
744
|
+
break;
|
745
|
+
case 2:
|
746
|
+
{ int ret;
|
747
|
+
ret = slice_from_s(z, 1, s_12); /* <-, line 99 */
|
748
|
+
if (ret < 0) return ret;
|
749
|
+
}
|
750
|
+
break;
|
751
|
+
}
|
752
|
+
return 1;
|
753
|
+
}
|
754
|
+
|
755
|
+
static int r_standard_suffix(struct SN_env * z) {
|
756
|
+
int among_var;
|
757
|
+
z->ket = z->c; /* [, line 104 */
|
758
|
+
among_var = find_among_b(z, a_6, 51); /* substring, line 104 */
|
759
|
+
if (!(among_var)) return 0;
|
760
|
+
z->bra = z->c; /* ], line 104 */
|
761
|
+
switch(among_var) {
|
762
|
+
case 0: return 0;
|
763
|
+
case 1:
|
764
|
+
{ int ret = r_R2(z);
|
765
|
+
if (ret == 0) return 0; /* call R2, line 111 */
|
766
|
+
if (ret < 0) return ret;
|
767
|
+
}
|
768
|
+
{ int ret;
|
769
|
+
ret = slice_del(z); /* delete, line 111 */
|
770
|
+
if (ret < 0) return ret;
|
771
|
+
}
|
772
|
+
break;
|
773
|
+
case 2:
|
774
|
+
{ int ret = r_R2(z);
|
775
|
+
if (ret == 0) return 0; /* call R2, line 113 */
|
776
|
+
if (ret < 0) return ret;
|
777
|
+
}
|
778
|
+
{ int ret;
|
779
|
+
ret = slice_del(z); /* delete, line 113 */
|
780
|
+
if (ret < 0) return ret;
|
781
|
+
}
|
782
|
+
{ int m = z->l - z->c; (void) m; /* try, line 114 */
|
783
|
+
z->ket = z->c; /* [, line 114 */
|
784
|
+
if (!(eq_s_b(z, 2, s_13))) { z->c = z->l - m; goto lab0; }
|
785
|
+
z->bra = z->c; /* ], line 114 */
|
786
|
+
{ int ret = r_R2(z);
|
787
|
+
if (ret == 0) { z->c = z->l - m; goto lab0; } /* call R2, line 114 */
|
788
|
+
if (ret < 0) return ret;
|
789
|
+
}
|
790
|
+
{ int ret;
|
791
|
+
ret = slice_del(z); /* delete, line 114 */
|
792
|
+
if (ret < 0) return ret;
|
793
|
+
}
|
794
|
+
lab0:
|
795
|
+
;
|
796
|
+
}
|
797
|
+
break;
|
798
|
+
case 3:
|
799
|
+
{ int ret = r_R2(z);
|
800
|
+
if (ret == 0) return 0; /* call R2, line 117 */
|
801
|
+
if (ret < 0) return ret;
|
802
|
+
}
|
803
|
+
{ int ret;
|
804
|
+
ret = slice_from_s(z, 3, s_14); /* <-, line 117 */
|
805
|
+
if (ret < 0) return ret;
|
806
|
+
}
|
807
|
+
break;
|
808
|
+
case 4:
|
809
|
+
{ int ret = r_R2(z);
|
810
|
+
if (ret == 0) return 0; /* call R2, line 119 */
|
811
|
+
if (ret < 0) return ret;
|
812
|
+
}
|
813
|
+
{ int ret;
|
814
|
+
ret = slice_from_s(z, 1, s_15); /* <-, line 119 */
|
815
|
+
if (ret < 0) return ret;
|
816
|
+
}
|
817
|
+
break;
|
818
|
+
case 5:
|
819
|
+
{ int ret = r_R2(z);
|
820
|
+
if (ret == 0) return 0; /* call R2, line 121 */
|
821
|
+
if (ret < 0) return ret;
|
822
|
+
}
|
823
|
+
{ int ret;
|
824
|
+
ret = slice_from_s(z, 4, s_16); /* <-, line 121 */
|
825
|
+
if (ret < 0) return ret;
|
826
|
+
}
|
827
|
+
break;
|
828
|
+
case 6:
|
829
|
+
{ int ret = r_RV(z);
|
830
|
+
if (ret == 0) return 0; /* call RV, line 123 */
|
831
|
+
if (ret < 0) return ret;
|
832
|
+
}
|
833
|
+
{ int ret;
|
834
|
+
ret = slice_del(z); /* delete, line 123 */
|
835
|
+
if (ret < 0) return ret;
|
836
|
+
}
|
837
|
+
break;
|
838
|
+
case 7:
|
839
|
+
{ int ret = r_R1(z);
|
840
|
+
if (ret == 0) return 0; /* call R1, line 125 */
|
841
|
+
if (ret < 0) return ret;
|
842
|
+
}
|
843
|
+
{ int ret;
|
844
|
+
ret = slice_del(z); /* delete, line 125 */
|
845
|
+
if (ret < 0) return ret;
|
846
|
+
}
|
847
|
+
{ int m = z->l - z->c; (void) m; /* try, line 126 */
|
848
|
+
z->ket = z->c; /* [, line 127 */
|
849
|
+
among_var = find_among_b(z, a_4, 4); /* substring, line 127 */
|
850
|
+
if (!(among_var)) { z->c = z->l - m; goto lab1; }
|
851
|
+
z->bra = z->c; /* ], line 127 */
|
852
|
+
{ int ret = r_R2(z);
|
853
|
+
if (ret == 0) { z->c = z->l - m; goto lab1; } /* call R2, line 127 */
|
854
|
+
if (ret < 0) return ret;
|
855
|
+
}
|
856
|
+
{ int ret;
|
857
|
+
ret = slice_del(z); /* delete, line 127 */
|
858
|
+
if (ret < 0) return ret;
|
859
|
+
}
|
860
|
+
switch(among_var) {
|
861
|
+
case 0: { z->c = z->l - m; goto lab1; }
|
862
|
+
case 1:
|
863
|
+
z->ket = z->c; /* [, line 128 */
|
864
|
+
if (!(eq_s_b(z, 2, s_17))) { z->c = z->l - m; goto lab1; }
|
865
|
+
z->bra = z->c; /* ], line 128 */
|
866
|
+
{ int ret = r_R2(z);
|
867
|
+
if (ret == 0) { z->c = z->l - m; goto lab1; } /* call R2, line 128 */
|
868
|
+
if (ret < 0) return ret;
|
869
|
+
}
|
870
|
+
{ int ret;
|
871
|
+
ret = slice_del(z); /* delete, line 128 */
|
872
|
+
if (ret < 0) return ret;
|
873
|
+
}
|
874
|
+
break;
|
875
|
+
}
|
876
|
+
lab1:
|
877
|
+
;
|
878
|
+
}
|
879
|
+
break;
|
880
|
+
case 8:
|
881
|
+
{ int ret = r_R2(z);
|
882
|
+
if (ret == 0) return 0; /* call R2, line 134 */
|
883
|
+
if (ret < 0) return ret;
|
884
|
+
}
|
885
|
+
{ int ret;
|
886
|
+
ret = slice_del(z); /* delete, line 134 */
|
887
|
+
if (ret < 0) return ret;
|
888
|
+
}
|
889
|
+
{ int m = z->l - z->c; (void) m; /* try, line 135 */
|
890
|
+
z->ket = z->c; /* [, line 136 */
|
891
|
+
among_var = find_among_b(z, a_5, 3); /* substring, line 136 */
|
892
|
+
if (!(among_var)) { z->c = z->l - m; goto lab2; }
|
893
|
+
z->bra = z->c; /* ], line 136 */
|
894
|
+
switch(among_var) {
|
895
|
+
case 0: { z->c = z->l - m; goto lab2; }
|
896
|
+
case 1:
|
897
|
+
{ int ret = r_R2(z);
|
898
|
+
if (ret == 0) { z->c = z->l - m; goto lab2; } /* call R2, line 137 */
|
899
|
+
if (ret < 0) return ret;
|
900
|
+
}
|
901
|
+
{ int ret;
|
902
|
+
ret = slice_del(z); /* delete, line 137 */
|
903
|
+
if (ret < 0) return ret;
|
904
|
+
}
|
905
|
+
break;
|
906
|
+
}
|
907
|
+
lab2:
|
908
|
+
;
|
909
|
+
}
|
910
|
+
break;
|
911
|
+
case 9:
|
912
|
+
{ int ret = r_R2(z);
|
913
|
+
if (ret == 0) return 0; /* call R2, line 142 */
|
914
|
+
if (ret < 0) return ret;
|
915
|
+
}
|
916
|
+
{ int ret;
|
917
|
+
ret = slice_del(z); /* delete, line 142 */
|
918
|
+
if (ret < 0) return ret;
|
919
|
+
}
|
920
|
+
{ int m = z->l - z->c; (void) m; /* try, line 143 */
|
921
|
+
z->ket = z->c; /* [, line 143 */
|
922
|
+
if (!(eq_s_b(z, 2, s_18))) { z->c = z->l - m; goto lab3; }
|
923
|
+
z->bra = z->c; /* ], line 143 */
|
924
|
+
{ int ret = r_R2(z);
|
925
|
+
if (ret == 0) { z->c = z->l - m; goto lab3; } /* call R2, line 143 */
|
926
|
+
if (ret < 0) return ret;
|
927
|
+
}
|
928
|
+
{ int ret;
|
929
|
+
ret = slice_del(z); /* delete, line 143 */
|
930
|
+
if (ret < 0) return ret;
|
931
|
+
}
|
932
|
+
z->ket = z->c; /* [, line 143 */
|
933
|
+
if (!(eq_s_b(z, 2, s_19))) { z->c = z->l - m; goto lab3; }
|
934
|
+
z->bra = z->c; /* ], line 143 */
|
935
|
+
{ int ret = r_R2(z);
|
936
|
+
if (ret == 0) { z->c = z->l - m; goto lab3; } /* call R2, line 143 */
|
937
|
+
if (ret < 0) return ret;
|
938
|
+
}
|
939
|
+
{ int ret;
|
940
|
+
ret = slice_del(z); /* delete, line 143 */
|
941
|
+
if (ret < 0) return ret;
|
942
|
+
}
|
943
|
+
lab3:
|
944
|
+
;
|
945
|
+
}
|
946
|
+
break;
|
947
|
+
}
|
948
|
+
return 1;
|
949
|
+
}
|
950
|
+
|
951
|
+
static int r_verb_suffix(struct SN_env * z) {
|
952
|
+
int among_var;
|
953
|
+
{ int m3; /* setlimit, line 148 */
|
954
|
+
int m = z->l - z->c; (void) m;
|
955
|
+
if (z->c < z->I[0]) return 0;
|
956
|
+
z->c = z->I[0]; /* tomark, line 148 */
|
957
|
+
m3 = z->lb; z->lb = z->c;
|
958
|
+
z->c = z->l - m;
|
959
|
+
z->ket = z->c; /* [, line 149 */
|
960
|
+
among_var = find_among_b(z, a_7, 87); /* substring, line 149 */
|
961
|
+
if (!(among_var)) { z->lb = m3; return 0; }
|
962
|
+
z->bra = z->c; /* ], line 149 */
|
963
|
+
switch(among_var) {
|
964
|
+
case 0: { z->lb = m3; return 0; }
|
965
|
+
case 1:
|
966
|
+
{ int ret;
|
967
|
+
ret = slice_del(z); /* delete, line 163 */
|
968
|
+
if (ret < 0) return ret;
|
969
|
+
}
|
970
|
+
break;
|
971
|
+
}
|
972
|
+
z->lb = m3;
|
973
|
+
}
|
974
|
+
return 1;
|
975
|
+
}
|
976
|
+
|
977
|
+
static int r_vowel_suffix(struct SN_env * z) {
|
978
|
+
{ int m = z->l - z->c; (void) m; /* try, line 171 */
|
979
|
+
z->ket = z->c; /* [, line 172 */
|
980
|
+
if (!(in_grouping_b(z, g_AEIO, 97, 242))) { z->c = z->l - m; goto lab0; }
|
981
|
+
z->bra = z->c; /* ], line 172 */
|
982
|
+
{ int ret = r_RV(z);
|
983
|
+
if (ret == 0) { z->c = z->l - m; goto lab0; } /* call RV, line 172 */
|
984
|
+
if (ret < 0) return ret;
|
985
|
+
}
|
986
|
+
{ int ret;
|
987
|
+
ret = slice_del(z); /* delete, line 172 */
|
988
|
+
if (ret < 0) return ret;
|
989
|
+
}
|
990
|
+
z->ket = z->c; /* [, line 173 */
|
991
|
+
if (!(eq_s_b(z, 1, s_20))) { z->c = z->l - m; goto lab0; }
|
992
|
+
z->bra = z->c; /* ], line 173 */
|
993
|
+
{ int ret = r_RV(z);
|
994
|
+
if (ret == 0) { z->c = z->l - m; goto lab0; } /* call RV, line 173 */
|
995
|
+
if (ret < 0) return ret;
|
996
|
+
}
|
997
|
+
{ int ret;
|
998
|
+
ret = slice_del(z); /* delete, line 173 */
|
999
|
+
if (ret < 0) return ret;
|
1000
|
+
}
|
1001
|
+
lab0:
|
1002
|
+
;
|
1003
|
+
}
|
1004
|
+
{ int m = z->l - z->c; (void) m; /* try, line 175 */
|
1005
|
+
z->ket = z->c; /* [, line 176 */
|
1006
|
+
if (!(eq_s_b(z, 1, s_21))) { z->c = z->l - m; goto lab1; }
|
1007
|
+
z->bra = z->c; /* ], line 176 */
|
1008
|
+
if (!(in_grouping_b(z, g_CG, 99, 103))) { z->c = z->l - m; goto lab1; }
|
1009
|
+
{ int ret = r_RV(z);
|
1010
|
+
if (ret == 0) { z->c = z->l - m; goto lab1; } /* call RV, line 176 */
|
1011
|
+
if (ret < 0) return ret;
|
1012
|
+
}
|
1013
|
+
{ int ret;
|
1014
|
+
ret = slice_del(z); /* delete, line 176 */
|
1015
|
+
if (ret < 0) return ret;
|
1016
|
+
}
|
1017
|
+
lab1:
|
1018
|
+
;
|
1019
|
+
}
|
1020
|
+
return 1;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
extern int italian_ISO_8859_1_stem(struct SN_env * z) {
|
1024
|
+
{ int c = z->c; /* do, line 182 */
|
1025
|
+
{ int ret = r_prelude(z);
|
1026
|
+
if (ret == 0) goto lab0; /* call prelude, line 182 */
|
1027
|
+
if (ret < 0) return ret;
|
1028
|
+
}
|
1029
|
+
lab0:
|
1030
|
+
z->c = c;
|
1031
|
+
}
|
1032
|
+
{ int c = z->c; /* do, line 183 */
|
1033
|
+
{ int ret = r_mark_regions(z);
|
1034
|
+
if (ret == 0) goto lab1; /* call mark_regions, line 183 */
|
1035
|
+
if (ret < 0) return ret;
|
1036
|
+
}
|
1037
|
+
lab1:
|
1038
|
+
z->c = c;
|
1039
|
+
}
|
1040
|
+
z->lb = z->c; z->c = z->l; /* backwards, line 184 */
|
1041
|
+
|
1042
|
+
{ int m = z->l - z->c; (void) m; /* do, line 185 */
|
1043
|
+
{ int ret = r_attached_pronoun(z);
|
1044
|
+
if (ret == 0) goto lab2; /* call attached_pronoun, line 185 */
|
1045
|
+
if (ret < 0) return ret;
|
1046
|
+
}
|
1047
|
+
lab2:
|
1048
|
+
z->c = z->l - m;
|
1049
|
+
}
|
1050
|
+
{ int m = z->l - z->c; (void) m; /* do, line 186 */
|
1051
|
+
{ int m = z->l - z->c; (void) m; /* or, line 186 */
|
1052
|
+
{ int ret = r_standard_suffix(z);
|
1053
|
+
if (ret == 0) goto lab5; /* call standard_suffix, line 186 */
|
1054
|
+
if (ret < 0) return ret;
|
1055
|
+
}
|
1056
|
+
goto lab4;
|
1057
|
+
lab5:
|
1058
|
+
z->c = z->l - m;
|
1059
|
+
{ int ret = r_verb_suffix(z);
|
1060
|
+
if (ret == 0) goto lab3; /* call verb_suffix, line 186 */
|
1061
|
+
if (ret < 0) return ret;
|
1062
|
+
}
|
1063
|
+
}
|
1064
|
+
lab4:
|
1065
|
+
lab3:
|
1066
|
+
z->c = z->l - m;
|
1067
|
+
}
|
1068
|
+
{ int m = z->l - z->c; (void) m; /* do, line 187 */
|
1069
|
+
{ int ret = r_vowel_suffix(z);
|
1070
|
+
if (ret == 0) goto lab6; /* call vowel_suffix, line 187 */
|
1071
|
+
if (ret < 0) return ret;
|
1072
|
+
}
|
1073
|
+
lab6:
|
1074
|
+
z->c = z->l - m;
|
1075
|
+
}
|
1076
|
+
z->c = z->lb;
|
1077
|
+
{ int c = z->c; /* do, line 189 */
|
1078
|
+
{ int ret = r_postlude(z);
|
1079
|
+
if (ret == 0) goto lab7; /* call postlude, line 189 */
|
1080
|
+
if (ret < 0) return ret;
|
1081
|
+
}
|
1082
|
+
lab7:
|
1083
|
+
z->c = c;
|
1084
|
+
}
|
1085
|
+
return 1;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
extern struct SN_env * italian_ISO_8859_1_create_env(void) { return SN_create_env(0, 3, 0); }
|
1089
|
+
|
1090
|
+
extern void italian_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z); }
|
1091
|
+
|