ferret 0.11.6 → 0.11.8.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. data/README +10 -22
  2. data/RELEASE_CHANGES +137 -0
  3. data/RELEASE_NOTES +60 -0
  4. data/Rakefile +379 -274
  5. data/TODO +100 -8
  6. data/bin/ferret-browser +0 -0
  7. data/ext/BZLIB_blocksort.c +1094 -0
  8. data/ext/BZLIB_bzlib.c +1578 -0
  9. data/ext/BZLIB_compress.c +672 -0
  10. data/ext/BZLIB_crctable.c +104 -0
  11. data/ext/BZLIB_decompress.c +626 -0
  12. data/ext/BZLIB_huffman.c +205 -0
  13. data/ext/BZLIB_randtable.c +84 -0
  14. data/ext/{api.c → STEMMER_api.c} +7 -10
  15. data/ext/{libstemmer.c → STEMMER_libstemmer.c} +3 -2
  16. data/ext/{stem_ISO_8859_1_danish.c → STEMMER_stem_ISO_8859_1_danish.c} +123 -124
  17. data/ext/{stem_ISO_8859_1_dutch.c → STEMMER_stem_ISO_8859_1_dutch.c} +177 -188
  18. data/ext/STEMMER_stem_ISO_8859_1_english.c +1117 -0
  19. data/ext/{stem_ISO_8859_1_finnish.c → STEMMER_stem_ISO_8859_1_finnish.c} +276 -306
  20. data/ext/STEMMER_stem_ISO_8859_1_french.c +1246 -0
  21. data/ext/{stem_ISO_8859_1_german.c → STEMMER_stem_ISO_8859_1_german.c} +161 -170
  22. data/ext/STEMMER_stem_ISO_8859_1_hungarian.c +1230 -0
  23. data/ext/STEMMER_stem_ISO_8859_1_italian.c +1065 -0
  24. data/ext/STEMMER_stem_ISO_8859_1_norwegian.c +297 -0
  25. data/ext/{stem_ISO_8859_1_porter.c → STEMMER_stem_ISO_8859_1_porter.c} +263 -290
  26. data/ext/{stem_ISO_8859_1_portuguese.c → STEMMER_stem_ISO_8859_1_portuguese.c} +362 -380
  27. data/ext/STEMMER_stem_ISO_8859_1_spanish.c +1093 -0
  28. data/ext/STEMMER_stem_ISO_8859_1_swedish.c +307 -0
  29. data/ext/STEMMER_stem_ISO_8859_2_romanian.c +998 -0
  30. data/ext/{stem_KOI8_R_russian.c → STEMMER_stem_KOI8_R_russian.c} +244 -245
  31. data/ext/STEMMER_stem_UTF_8_danish.c +339 -0
  32. data/ext/{stem_UTF_8_dutch.c → STEMMER_stem_UTF_8_dutch.c} +192 -211
  33. data/ext/STEMMER_stem_UTF_8_english.c +1125 -0
  34. data/ext/{stem_UTF_8_finnish.c → STEMMER_stem_UTF_8_finnish.c} +284 -324
  35. data/ext/STEMMER_stem_UTF_8_french.c +1256 -0
  36. data/ext/{stem_UTF_8_german.c → STEMMER_stem_UTF_8_german.c} +170 -187
  37. data/ext/STEMMER_stem_UTF_8_hungarian.c +1234 -0
  38. data/ext/STEMMER_stem_UTF_8_italian.c +1073 -0
  39. data/ext/STEMMER_stem_UTF_8_norwegian.c +299 -0
  40. data/ext/{stem_UTF_8_porter.c → STEMMER_stem_UTF_8_porter.c} +271 -310
  41. data/ext/STEMMER_stem_UTF_8_portuguese.c +1023 -0
  42. data/ext/STEMMER_stem_UTF_8_romanian.c +1004 -0
  43. data/ext/STEMMER_stem_UTF_8_russian.c +694 -0
  44. data/ext/STEMMER_stem_UTF_8_spanish.c +1097 -0
  45. data/ext/STEMMER_stem_UTF_8_swedish.c +309 -0
  46. data/ext/STEMMER_stem_UTF_8_turkish.c +2205 -0
  47. data/ext/{utilities.c → STEMMER_utilities.c} +100 -68
  48. data/ext/analysis.c +276 -121
  49. data/ext/analysis.h +190 -143
  50. data/ext/api.h +3 -4
  51. data/ext/array.c +5 -3
  52. data/ext/array.h +52 -43
  53. data/ext/bitvector.c +38 -482
  54. data/ext/bitvector.h +446 -124
  55. data/ext/bzlib.h +282 -0
  56. data/ext/bzlib_private.h +503 -0
  57. data/ext/compound_io.c +23 -22
  58. data/ext/config.h +21 -11
  59. data/ext/document.c +43 -40
  60. data/ext/document.h +31 -21
  61. data/ext/except.c +20 -38
  62. data/ext/except.h +89 -76
  63. data/ext/extconf.rb +3 -2
  64. data/ext/ferret.c +49 -35
  65. data/ext/ferret.h +14 -11
  66. data/ext/field_index.c +262 -0
  67. data/ext/field_index.h +52 -0
  68. data/ext/filter.c +11 -10
  69. data/ext/fs_store.c +65 -47
  70. data/ext/global.c +245 -165
  71. data/ext/global.h +252 -54
  72. data/ext/hash.c +200 -243
  73. data/ext/hash.h +205 -163
  74. data/ext/hashset.c +118 -96
  75. data/ext/hashset.h +110 -82
  76. data/ext/header.h +19 -19
  77. data/ext/helper.c +11 -10
  78. data/ext/helper.h +14 -6
  79. data/ext/index.c +745 -366
  80. data/ext/index.h +503 -529
  81. data/ext/internal.h +1020 -0
  82. data/ext/lang.c +10 -0
  83. data/ext/lang.h +35 -15
  84. data/ext/mempool.c +5 -4
  85. data/ext/mempool.h +30 -22
  86. data/ext/modules.h +35 -7
  87. data/ext/multimapper.c +43 -2
  88. data/ext/multimapper.h +32 -23
  89. data/ext/posh.c +0 -0
  90. data/ext/posh.h +4 -38
  91. data/ext/priorityqueue.c +10 -12
  92. data/ext/priorityqueue.h +33 -21
  93. data/ext/q_boolean.c +22 -9
  94. data/ext/q_const_score.c +3 -2
  95. data/ext/q_filtered_query.c +15 -12
  96. data/ext/q_fuzzy.c +147 -135
  97. data/ext/q_match_all.c +3 -2
  98. data/ext/q_multi_term.c +28 -32
  99. data/ext/q_parser.c +451 -173
  100. data/ext/q_phrase.c +158 -79
  101. data/ext/q_prefix.c +16 -18
  102. data/ext/q_range.c +363 -31
  103. data/ext/q_span.c +130 -141
  104. data/ext/q_term.c +21 -21
  105. data/ext/q_wildcard.c +19 -23
  106. data/ext/r_analysis.c +369 -242
  107. data/ext/r_index.c +421 -434
  108. data/ext/r_qparser.c +142 -92
  109. data/ext/r_search.c +790 -407
  110. data/ext/r_store.c +44 -44
  111. data/ext/r_utils.c +264 -96
  112. data/ext/ram_store.c +29 -23
  113. data/ext/scanner.c +895 -0
  114. data/ext/scanner.h +36 -0
  115. data/ext/scanner_mb.c +6701 -0
  116. data/ext/scanner_utf8.c +4415 -0
  117. data/ext/search.c +210 -87
  118. data/ext/search.h +556 -488
  119. data/ext/similarity.c +17 -16
  120. data/ext/similarity.h +51 -44
  121. data/ext/sort.c +157 -354
  122. data/ext/stem_ISO_8859_1_hungarian.h +16 -0
  123. data/ext/stem_ISO_8859_2_romanian.h +16 -0
  124. data/ext/stem_UTF_8_hungarian.h +16 -0
  125. data/ext/stem_UTF_8_romanian.h +16 -0
  126. data/ext/stem_UTF_8_turkish.h +16 -0
  127. data/ext/stopwords.c +287 -278
  128. data/ext/store.c +57 -51
  129. data/ext/store.h +308 -286
  130. data/ext/symbol.c +10 -0
  131. data/ext/symbol.h +23 -0
  132. data/ext/term_vectors.c +14 -293
  133. data/ext/threading.h +22 -22
  134. data/ext/win32.h +12 -4
  135. data/lib/ferret.rb +2 -1
  136. data/lib/ferret/browser.rb +1 -1
  137. data/lib/ferret/field_symbol.rb +94 -0
  138. data/lib/ferret/index.rb +221 -34
  139. data/lib/ferret/number_tools.rb +6 -6
  140. data/lib/ferret/version.rb +3 -0
  141. data/test/{unit → long_running}/largefile/tc_largefile.rb +1 -1
  142. data/test/test_helper.rb +7 -2
  143. data/test/test_installed.rb +1 -0
  144. data/test/threading/thread_safety_index_test.rb +10 -1
  145. data/test/threading/thread_safety_read_write_test.rb +4 -7
  146. data/test/threading/thread_safety_test.rb +0 -0
  147. data/test/unit/analysis/tc_analyzer.rb +29 -27
  148. data/test/unit/analysis/tc_token_stream.rb +23 -16
  149. data/test/unit/index/tc_index.rb +116 -11
  150. data/test/unit/index/tc_index_reader.rb +27 -27
  151. data/test/unit/index/tc_index_writer.rb +10 -0
  152. data/test/unit/index/th_doc.rb +38 -21
  153. data/test/unit/search/tc_filter.rb +31 -10
  154. data/test/unit/search/tc_index_searcher.rb +6 -0
  155. data/test/unit/search/tm_searcher.rb +53 -1
  156. data/test/unit/store/tc_fs_store.rb +40 -2
  157. data/test/unit/store/tc_ram_store.rb +0 -0
  158. data/test/unit/store/tm_store.rb +0 -0
  159. data/test/unit/store/tm_store_lock.rb +7 -6
  160. data/test/unit/tc_field_symbol.rb +26 -0
  161. data/test/unit/ts_analysis.rb +0 -0
  162. data/test/unit/ts_index.rb +0 -0
  163. data/test/unit/ts_store.rb +0 -0
  164. data/test/unit/ts_utils.rb +0 -0
  165. data/test/unit/utils/tc_number_tools.rb +0 -0
  166. data/test/utils/content_generator.rb +226 -0
  167. metadata +262 -221
  168. data/ext/inc/lang.h +0 -48
  169. data/ext/inc/threading.h +0 -31
  170. data/ext/stem_ISO_8859_1_english.c +0 -1156
  171. data/ext/stem_ISO_8859_1_french.c +0 -1276
  172. data/ext/stem_ISO_8859_1_italian.c +0 -1091
  173. data/ext/stem_ISO_8859_1_norwegian.c +0 -296
  174. data/ext/stem_ISO_8859_1_spanish.c +0 -1119
  175. data/ext/stem_ISO_8859_1_swedish.c +0 -307
  176. data/ext/stem_UTF_8_danish.c +0 -344
  177. data/ext/stem_UTF_8_english.c +0 -1176
  178. data/ext/stem_UTF_8_french.c +0 -1296
  179. data/ext/stem_UTF_8_italian.c +0 -1113
  180. data/ext/stem_UTF_8_norwegian.c +0 -302
  181. data/ext/stem_UTF_8_portuguese.c +0 -1055
  182. data/ext/stem_UTF_8_russian.c +0 -709
  183. data/ext/stem_UTF_8_spanish.c +0 -1137
  184. data/ext/stem_UTF_8_swedish.c +0 -313
  185. data/lib/ferret_version.rb +0 -3
@@ -0,0 +1,297 @@
1
+
2
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
3
+
4
+ #include "header.h"
5
+
6
+ #ifdef __cplusplus
7
+ extern "C" {
8
+ #endif
9
+ extern int norwegian_ISO_8859_1_stem(struct SN_env * z);
10
+ #ifdef __cplusplus
11
+ }
12
+ #endif
13
+ static int r_other_suffix(struct SN_env * z);
14
+ static int r_consonant_pair(struct SN_env * z);
15
+ static int r_main_suffix(struct SN_env * z);
16
+ static int r_mark_regions(struct SN_env * z);
17
+ #ifdef __cplusplus
18
+ extern "C" {
19
+ #endif
20
+
21
+
22
+ extern struct SN_env * norwegian_ISO_8859_1_create_env(void);
23
+ extern void norwegian_ISO_8859_1_close_env(struct SN_env * z);
24
+
25
+
26
+ #ifdef __cplusplus
27
+ }
28
+ #endif
29
+ static const symbol s_0_0[1] = { 'a' };
30
+ static const symbol s_0_1[1] = { 'e' };
31
+ static const symbol s_0_2[3] = { 'e', 'd', 'e' };
32
+ static const symbol s_0_3[4] = { 'a', 'n', 'd', 'e' };
33
+ static const symbol s_0_4[4] = { 'e', 'n', 'd', 'e' };
34
+ static const symbol s_0_5[3] = { 'a', 'n', 'e' };
35
+ static const symbol s_0_6[3] = { 'e', 'n', 'e' };
36
+ static const symbol s_0_7[6] = { 'h', 'e', 't', 'e', 'n', 'e' };
37
+ static const symbol s_0_8[4] = { 'e', 'r', 't', 'e' };
38
+ static const symbol s_0_9[2] = { 'e', 'n' };
39
+ static const symbol s_0_10[5] = { 'h', 'e', 't', 'e', 'n' };
40
+ static const symbol s_0_11[2] = { 'a', 'r' };
41
+ static const symbol s_0_12[2] = { 'e', 'r' };
42
+ static const symbol s_0_13[5] = { 'h', 'e', 't', 'e', 'r' };
43
+ static const symbol s_0_14[1] = { 's' };
44
+ static const symbol s_0_15[2] = { 'a', 's' };
45
+ static const symbol s_0_16[2] = { 'e', 's' };
46
+ static const symbol s_0_17[4] = { 'e', 'd', 'e', 's' };
47
+ static const symbol s_0_18[5] = { 'e', 'n', 'd', 'e', 's' };
48
+ static const symbol s_0_19[4] = { 'e', 'n', 'e', 's' };
49
+ static const symbol s_0_20[7] = { 'h', 'e', 't', 'e', 'n', 'e', 's' };
50
+ static const symbol s_0_21[3] = { 'e', 'n', 's' };
51
+ static const symbol s_0_22[6] = { 'h', 'e', 't', 'e', 'n', 's' };
52
+ static const symbol s_0_23[3] = { 'e', 'r', 's' };
53
+ static const symbol s_0_24[3] = { 'e', 't', 's' };
54
+ static const symbol s_0_25[2] = { 'e', 't' };
55
+ static const symbol s_0_26[3] = { 'h', 'e', 't' };
56
+ static const symbol s_0_27[3] = { 'e', 'r', 't' };
57
+ static const symbol s_0_28[3] = { 'a', 's', 't' };
58
+
59
+ static const struct among a_0[29] =
60
+ {
61
+ /* 0 */ { 1, s_0_0, -1, 1, 0},
62
+ /* 1 */ { 1, s_0_1, -1, 1, 0},
63
+ /* 2 */ { 3, s_0_2, 1, 1, 0},
64
+ /* 3 */ { 4, s_0_3, 1, 1, 0},
65
+ /* 4 */ { 4, s_0_4, 1, 1, 0},
66
+ /* 5 */ { 3, s_0_5, 1, 1, 0},
67
+ /* 6 */ { 3, s_0_6, 1, 1, 0},
68
+ /* 7 */ { 6, s_0_7, 6, 1, 0},
69
+ /* 8 */ { 4, s_0_8, 1, 3, 0},
70
+ /* 9 */ { 2, s_0_9, -1, 1, 0},
71
+ /* 10 */ { 5, s_0_10, 9, 1, 0},
72
+ /* 11 */ { 2, s_0_11, -1, 1, 0},
73
+ /* 12 */ { 2, s_0_12, -1, 1, 0},
74
+ /* 13 */ { 5, s_0_13, 12, 1, 0},
75
+ /* 14 */ { 1, s_0_14, -1, 2, 0},
76
+ /* 15 */ { 2, s_0_15, 14, 1, 0},
77
+ /* 16 */ { 2, s_0_16, 14, 1, 0},
78
+ /* 17 */ { 4, s_0_17, 16, 1, 0},
79
+ /* 18 */ { 5, s_0_18, 16, 1, 0},
80
+ /* 19 */ { 4, s_0_19, 16, 1, 0},
81
+ /* 20 */ { 7, s_0_20, 19, 1, 0},
82
+ /* 21 */ { 3, s_0_21, 14, 1, 0},
83
+ /* 22 */ { 6, s_0_22, 21, 1, 0},
84
+ /* 23 */ { 3, s_0_23, 14, 1, 0},
85
+ /* 24 */ { 3, s_0_24, 14, 1, 0},
86
+ /* 25 */ { 2, s_0_25, -1, 1, 0},
87
+ /* 26 */ { 3, s_0_26, 25, 1, 0},
88
+ /* 27 */ { 3, s_0_27, -1, 3, 0},
89
+ /* 28 */ { 3, s_0_28, -1, 1, 0}
90
+ };
91
+
92
+ static const symbol s_1_0[2] = { 'd', 't' };
93
+ static const symbol s_1_1[2] = { 'v', 't' };
94
+
95
+ static const struct among a_1[2] =
96
+ {
97
+ /* 0 */ { 2, s_1_0, -1, -1, 0},
98
+ /* 1 */ { 2, s_1_1, -1, -1, 0}
99
+ };
100
+
101
+ static const symbol s_2_0[3] = { 'l', 'e', 'g' };
102
+ static const symbol s_2_1[4] = { 'e', 'l', 'e', 'g' };
103
+ static const symbol s_2_2[2] = { 'i', 'g' };
104
+ static const symbol s_2_3[3] = { 'e', 'i', 'g' };
105
+ static const symbol s_2_4[3] = { 'l', 'i', 'g' };
106
+ static const symbol s_2_5[4] = { 'e', 'l', 'i', 'g' };
107
+ static const symbol s_2_6[3] = { 'e', 'l', 's' };
108
+ static const symbol s_2_7[3] = { 'l', 'o', 'v' };
109
+ static const symbol s_2_8[4] = { 'e', 'l', 'o', 'v' };
110
+ static const symbol s_2_9[4] = { 's', 'l', 'o', 'v' };
111
+ static const symbol s_2_10[7] = { 'h', 'e', 't', 's', 'l', 'o', 'v' };
112
+
113
+ static const struct among a_2[11] =
114
+ {
115
+ /* 0 */ { 3, s_2_0, -1, 1, 0},
116
+ /* 1 */ { 4, s_2_1, 0, 1, 0},
117
+ /* 2 */ { 2, s_2_2, -1, 1, 0},
118
+ /* 3 */ { 3, s_2_3, 2, 1, 0},
119
+ /* 4 */ { 3, s_2_4, 2, 1, 0},
120
+ /* 5 */ { 4, s_2_5, 4, 1, 0},
121
+ /* 6 */ { 3, s_2_6, -1, 1, 0},
122
+ /* 7 */ { 3, s_2_7, -1, 1, 0},
123
+ /* 8 */ { 4, s_2_8, 7, 1, 0},
124
+ /* 9 */ { 4, s_2_9, 7, 1, 0},
125
+ /* 10 */ { 7, s_2_10, 9, 1, 0}
126
+ };
127
+
128
+ static const unsigned char g_v[] = { 17, 65, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 128 };
129
+
130
+ static const unsigned char g_s_ending[] = { 119, 125, 149, 1 };
131
+
132
+ static const symbol s_0[] = { 'k' };
133
+ static const symbol s_1[] = { 'e', 'r' };
134
+
135
+ static int r_mark_regions(struct SN_env * z) {
136
+ z->I[0] = z->l;
137
+ { int c_test = z->c; /* test, line 30 */
138
+ { int ret = z->c + 3;
139
+ if (0 > ret || ret > z->l) return 0;
140
+ z->c = ret; /* hop, line 30 */
141
+ }
142
+ z->I[1] = z->c; /* setmark x, line 30 */
143
+ z->c = c_test;
144
+ }
145
+ if (out_grouping(z, g_v, 97, 248, 1) < 0) return 0; /* goto */ /* grouping v, line 31 */
146
+ { /* gopast */ /* non v, line 31 */
147
+ int ret = in_grouping(z, g_v, 97, 248, 1);
148
+ if (ret < 0) return 0;
149
+ z->c += ret;
150
+ }
151
+ z->I[0] = z->c; /* setmark p1, line 31 */
152
+ /* try, line 32 */
153
+ if (!(z->I[0] < z->I[1])) goto lab0;
154
+ z->I[0] = z->I[1];
155
+ lab0:
156
+ return 1;
157
+ }
158
+
159
+ static int r_main_suffix(struct SN_env * z) {
160
+ int among_var;
161
+ { int mlimit; /* setlimit, line 38 */
162
+ int m1 = z->l - z->c; (void)m1;
163
+ if (z->c < z->I[0]) return 0;
164
+ z->c = z->I[0]; /* tomark, line 38 */
165
+ mlimit = z->lb; z->lb = z->c;
166
+ z->c = z->l - m1;
167
+ z->ket = z->c; /* [, line 38 */
168
+ if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1851426 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit; return 0; }
169
+ among_var = find_among_b(z, a_0, 29); /* substring, line 38 */
170
+ if (!(among_var)) { z->lb = mlimit; return 0; }
171
+ z->bra = z->c; /* ], line 38 */
172
+ z->lb = mlimit;
173
+ }
174
+ switch(among_var) {
175
+ case 0: return 0;
176
+ case 1:
177
+ { int ret = slice_del(z); /* delete, line 44 */
178
+ if (ret < 0) return ret;
179
+ }
180
+ break;
181
+ case 2:
182
+ { int m2 = z->l - z->c; (void)m2; /* or, line 46 */
183
+ if (in_grouping_b(z, g_s_ending, 98, 122, 0)) goto lab1;
184
+ goto lab0;
185
+ lab1:
186
+ z->c = z->l - m2;
187
+ if (!(eq_s_b(z, 1, s_0))) return 0;
188
+ if (out_grouping_b(z, g_v, 97, 248, 0)) return 0;
189
+ }
190
+ lab0:
191
+ { int ret = slice_del(z); /* delete, line 46 */
192
+ if (ret < 0) return ret;
193
+ }
194
+ break;
195
+ case 3:
196
+ { int ret = slice_from_s(z, 2, s_1); /* <-, line 48 */
197
+ if (ret < 0) return ret;
198
+ }
199
+ break;
200
+ }
201
+ return 1;
202
+ }
203
+
204
+ static int r_consonant_pair(struct SN_env * z) {
205
+ { int m_test = z->l - z->c; /* test, line 53 */
206
+ { int mlimit; /* setlimit, line 54 */
207
+ int m1 = z->l - z->c; (void)m1;
208
+ if (z->c < z->I[0]) return 0;
209
+ z->c = z->I[0]; /* tomark, line 54 */
210
+ mlimit = z->lb; z->lb = z->c;
211
+ z->c = z->l - m1;
212
+ z->ket = z->c; /* [, line 54 */
213
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] != 116) { z->lb = mlimit; return 0; }
214
+ if (!(find_among_b(z, a_1, 2))) { z->lb = mlimit; return 0; } /* substring, line 54 */
215
+ z->bra = z->c; /* ], line 54 */
216
+ z->lb = mlimit;
217
+ }
218
+ z->c = z->l - m_test;
219
+ }
220
+ if (z->c <= z->lb) return 0;
221
+ z->c--; /* next, line 59 */
222
+ z->bra = z->c; /* ], line 59 */
223
+ { int ret = slice_del(z); /* delete, line 59 */
224
+ if (ret < 0) return ret;
225
+ }
226
+ return 1;
227
+ }
228
+
229
+ static int r_other_suffix(struct SN_env * z) {
230
+ int among_var;
231
+ { int mlimit; /* setlimit, line 63 */
232
+ int m1 = z->l - z->c; (void)m1;
233
+ if (z->c < z->I[0]) return 0;
234
+ z->c = z->I[0]; /* tomark, line 63 */
235
+ mlimit = z->lb; z->lb = z->c;
236
+ z->c = z->l - m1;
237
+ z->ket = z->c; /* [, line 63 */
238
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((4718720 >> (z->p[z->c - 1] & 0x1f)) & 1)) { z->lb = mlimit; return 0; }
239
+ among_var = find_among_b(z, a_2, 11); /* substring, line 63 */
240
+ if (!(among_var)) { z->lb = mlimit; return 0; }
241
+ z->bra = z->c; /* ], line 63 */
242
+ z->lb = mlimit;
243
+ }
244
+ switch(among_var) {
245
+ case 0: return 0;
246
+ case 1:
247
+ { int ret = slice_del(z); /* delete, line 67 */
248
+ if (ret < 0) return ret;
249
+ }
250
+ break;
251
+ }
252
+ return 1;
253
+ }
254
+
255
+ extern int norwegian_ISO_8859_1_stem(struct SN_env * z) {
256
+ { int c1 = z->c; /* do, line 74 */
257
+ { int ret = r_mark_regions(z);
258
+ if (ret == 0) goto lab0; /* call mark_regions, line 74 */
259
+ if (ret < 0) return ret;
260
+ }
261
+ lab0:
262
+ z->c = c1;
263
+ }
264
+ z->lb = z->c; z->c = z->l; /* backwards, line 75 */
265
+
266
+ { int m2 = z->l - z->c; (void)m2; /* do, line 76 */
267
+ { int ret = r_main_suffix(z);
268
+ if (ret == 0) goto lab1; /* call main_suffix, line 76 */
269
+ if (ret < 0) return ret;
270
+ }
271
+ lab1:
272
+ z->c = z->l - m2;
273
+ }
274
+ { int m3 = z->l - z->c; (void)m3; /* do, line 77 */
275
+ { int ret = r_consonant_pair(z);
276
+ if (ret == 0) goto lab2; /* call consonant_pair, line 77 */
277
+ if (ret < 0) return ret;
278
+ }
279
+ lab2:
280
+ z->c = z->l - m3;
281
+ }
282
+ { int m4 = z->l - z->c; (void)m4; /* do, line 78 */
283
+ { int ret = r_other_suffix(z);
284
+ if (ret == 0) goto lab3; /* call other_suffix, line 78 */
285
+ if (ret < 0) return ret;
286
+ }
287
+ lab3:
288
+ z->c = z->l - m4;
289
+ }
290
+ z->c = z->lb;
291
+ return 1;
292
+ }
293
+
294
+ extern struct SN_env * norwegian_ISO_8859_1_create_env(void) { return SN_create_env(0, 2, 0); }
295
+
296
+ extern void norwegian_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
297
+
@@ -3,7 +3,13 @@
3
3
 
4
4
  #include "header.h"
5
5
 
6
+ #ifdef __cplusplus
7
+ extern "C" {
8
+ #endif
6
9
  extern int porter_ISO_8859_1_stem(struct SN_env * z);
10
+ #ifdef __cplusplus
11
+ }
12
+ #endif
7
13
  static int r_Step_5b(struct SN_env * z);
8
14
  static int r_Step_5a(struct SN_env * z);
9
15
  static int r_Step_4(struct SN_env * z);
@@ -15,16 +21,24 @@ static int r_Step_1a(struct SN_env * z);
15
21
  static int r_R2(struct SN_env * z);
16
22
  static int r_R1(struct SN_env * z);
17
23
  static int r_shortv(struct SN_env * z);
24
+ #ifdef __cplusplus
25
+ extern "C" {
26
+ #endif
27
+
18
28
 
19
29
  extern struct SN_env * porter_ISO_8859_1_create_env(void);
20
30
  extern void porter_ISO_8859_1_close_env(struct SN_env * z);
21
31
 
22
- static symbol s_0_0[1] = { 's' };
23
- static symbol s_0_1[3] = { 'i', 'e', 's' };
24
- static symbol s_0_2[4] = { 's', 's', 'e', 's' };
25
- static symbol s_0_3[2] = { 's', 's' };
26
32
 
27
- static struct among a_0[4] =
33
+ #ifdef __cplusplus
34
+ }
35
+ #endif
36
+ static const symbol s_0_0[1] = { 's' };
37
+ static const symbol s_0_1[3] = { 'i', 'e', 's' };
38
+ static const symbol s_0_2[4] = { 's', 's', 'e', 's' };
39
+ static const symbol s_0_3[2] = { 's', 's' };
40
+
41
+ static const struct among a_0[4] =
28
42
  {
29
43
  /* 0 */ { 1, s_0_0, -1, 3, 0},
30
44
  /* 1 */ { 3, s_0_1, 0, 2, 0},
@@ -32,20 +46,20 @@ static struct among a_0[4] =
32
46
  /* 3 */ { 2, s_0_3, 0, -1, 0}
33
47
  };
34
48
 
35
- static symbol s_1_1[2] = { 'b', 'b' };
36
- static symbol s_1_2[2] = { 'd', 'd' };
37
- static symbol s_1_3[2] = { 'f', 'f' };
38
- static symbol s_1_4[2] = { 'g', 'g' };
39
- static symbol s_1_5[2] = { 'b', 'l' };
40
- static symbol s_1_6[2] = { 'm', 'm' };
41
- static symbol s_1_7[2] = { 'n', 'n' };
42
- static symbol s_1_8[2] = { 'p', 'p' };
43
- static symbol s_1_9[2] = { 'r', 'r' };
44
- static symbol s_1_10[2] = { 'a', 't' };
45
- static symbol s_1_11[2] = { 't', 't' };
46
- static symbol s_1_12[2] = { 'i', 'z' };
47
-
48
- static struct among a_1[13] =
49
+ static const symbol s_1_1[2] = { 'b', 'b' };
50
+ static const symbol s_1_2[2] = { 'd', 'd' };
51
+ static const symbol s_1_3[2] = { 'f', 'f' };
52
+ static const symbol s_1_4[2] = { 'g', 'g' };
53
+ static const symbol s_1_5[2] = { 'b', 'l' };
54
+ static const symbol s_1_6[2] = { 'm', 'm' };
55
+ static const symbol s_1_7[2] = { 'n', 'n' };
56
+ static const symbol s_1_8[2] = { 'p', 'p' };
57
+ static const symbol s_1_9[2] = { 'r', 'r' };
58
+ static const symbol s_1_10[2] = { 'a', 't' };
59
+ static const symbol s_1_11[2] = { 't', 't' };
60
+ static const symbol s_1_12[2] = { 'i', 'z' };
61
+
62
+ static const struct among a_1[13] =
49
63
  {
50
64
  /* 0 */ { 0, 0, -1, 3, 0},
51
65
  /* 1 */ { 2, s_1_1, 0, 2, 0},
@@ -62,39 +76,39 @@ static struct among a_1[13] =
62
76
  /* 12 */ { 2, s_1_12, 0, 1, 0}
63
77
  };
64
78
 
65
- static symbol s_2_0[2] = { 'e', 'd' };
66
- static symbol s_2_1[3] = { 'e', 'e', 'd' };
67
- static symbol s_2_2[3] = { 'i', 'n', 'g' };
79
+ static const symbol s_2_0[2] = { 'e', 'd' };
80
+ static const symbol s_2_1[3] = { 'e', 'e', 'd' };
81
+ static const symbol s_2_2[3] = { 'i', 'n', 'g' };
68
82
 
69
- static struct among a_2[3] =
83
+ static const struct among a_2[3] =
70
84
  {
71
85
  /* 0 */ { 2, s_2_0, -1, 2, 0},
72
86
  /* 1 */ { 3, s_2_1, 0, 1, 0},
73
87
  /* 2 */ { 3, s_2_2, -1, 2, 0}
74
88
  };
75
89
 
76
- static symbol s_3_0[4] = { 'a', 'n', 'c', 'i' };
77
- static symbol s_3_1[4] = { 'e', 'n', 'c', 'i' };
78
- static symbol s_3_2[4] = { 'a', 'b', 'l', 'i' };
79
- static symbol s_3_3[3] = { 'e', 'l', 'i' };
80
- static symbol s_3_4[4] = { 'a', 'l', 'l', 'i' };
81
- static symbol s_3_5[5] = { 'o', 'u', 's', 'l', 'i' };
82
- static symbol s_3_6[5] = { 'e', 'n', 't', 'l', 'i' };
83
- static symbol s_3_7[5] = { 'a', 'l', 'i', 't', 'i' };
84
- static symbol s_3_8[6] = { 'b', 'i', 'l', 'i', 't', 'i' };
85
- static symbol s_3_9[5] = { 'i', 'v', 'i', 't', 'i' };
86
- static symbol s_3_10[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
87
- static symbol s_3_11[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
88
- static symbol s_3_12[5] = { 'a', 'l', 'i', 's', 'm' };
89
- static symbol s_3_13[5] = { 'a', 't', 'i', 'o', 'n' };
90
- static symbol s_3_14[7] = { 'i', 'z', 'a', 't', 'i', 'o', 'n' };
91
- static symbol s_3_15[4] = { 'i', 'z', 'e', 'r' };
92
- static symbol s_3_16[4] = { 'a', 't', 'o', 'r' };
93
- static symbol s_3_17[7] = { 'i', 'v', 'e', 'n', 'e', 's', 's' };
94
- static symbol s_3_18[7] = { 'f', 'u', 'l', 'n', 'e', 's', 's' };
95
- static symbol s_3_19[7] = { 'o', 'u', 's', 'n', 'e', 's', 's' };
96
-
97
- static struct among a_3[20] =
90
+ static const symbol s_3_0[4] = { 'a', 'n', 'c', 'i' };
91
+ static const symbol s_3_1[4] = { 'e', 'n', 'c', 'i' };
92
+ static const symbol s_3_2[4] = { 'a', 'b', 'l', 'i' };
93
+ static const symbol s_3_3[3] = { 'e', 'l', 'i' };
94
+ static const symbol s_3_4[4] = { 'a', 'l', 'l', 'i' };
95
+ static const symbol s_3_5[5] = { 'o', 'u', 's', 'l', 'i' };
96
+ static const symbol s_3_6[5] = { 'e', 'n', 't', 'l', 'i' };
97
+ static const symbol s_3_7[5] = { 'a', 'l', 'i', 't', 'i' };
98
+ static const symbol s_3_8[6] = { 'b', 'i', 'l', 'i', 't', 'i' };
99
+ static const symbol s_3_9[5] = { 'i', 'v', 'i', 't', 'i' };
100
+ static const symbol s_3_10[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
101
+ static const symbol s_3_11[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
102
+ static const symbol s_3_12[5] = { 'a', 'l', 'i', 's', 'm' };
103
+ static const symbol s_3_13[5] = { 'a', 't', 'i', 'o', 'n' };
104
+ static const symbol s_3_14[7] = { 'i', 'z', 'a', 't', 'i', 'o', 'n' };
105
+ static const symbol s_3_15[4] = { 'i', 'z', 'e', 'r' };
106
+ static const symbol s_3_16[4] = { 'a', 't', 'o', 'r' };
107
+ static const symbol s_3_17[7] = { 'i', 'v', 'e', 'n', 'e', 's', 's' };
108
+ static const symbol s_3_18[7] = { 'f', 'u', 'l', 'n', 'e', 's', 's' };
109
+ static const symbol s_3_19[7] = { 'o', 'u', 's', 'n', 'e', 's', 's' };
110
+
111
+ static const struct among a_3[20] =
98
112
  {
99
113
  /* 0 */ { 4, s_3_0, -1, 3, 0},
100
114
  /* 1 */ { 4, s_3_1, -1, 2, 0},
@@ -118,15 +132,15 @@ static struct among a_3[20] =
118
132
  /* 19 */ { 7, s_3_19, -1, 12, 0}
119
133
  };
120
134
 
121
- static symbol s_4_0[5] = { 'i', 'c', 'a', 't', 'e' };
122
- static symbol s_4_1[5] = { 'a', 't', 'i', 'v', 'e' };
123
- static symbol s_4_2[5] = { 'a', 'l', 'i', 'z', 'e' };
124
- static symbol s_4_3[5] = { 'i', 'c', 'i', 't', 'i' };
125
- static symbol s_4_4[4] = { 'i', 'c', 'a', 'l' };
126
- static symbol s_4_5[3] = { 'f', 'u', 'l' };
127
- static symbol s_4_6[4] = { 'n', 'e', 's', 's' };
135
+ static const symbol s_4_0[5] = { 'i', 'c', 'a', 't', 'e' };
136
+ static const symbol s_4_1[5] = { 'a', 't', 'i', 'v', 'e' };
137
+ static const symbol s_4_2[5] = { 'a', 'l', 'i', 'z', 'e' };
138
+ static const symbol s_4_3[5] = { 'i', 'c', 'i', 't', 'i' };
139
+ static const symbol s_4_4[4] = { 'i', 'c', 'a', 'l' };
140
+ static const symbol s_4_5[3] = { 'f', 'u', 'l' };
141
+ static const symbol s_4_6[4] = { 'n', 'e', 's', 's' };
128
142
 
129
- static struct among a_4[7] =
143
+ static const struct among a_4[7] =
130
144
  {
131
145
  /* 0 */ { 5, s_4_0, -1, 2, 0},
132
146
  /* 1 */ { 5, s_4_1, -1, 3, 0},
@@ -137,27 +151,27 @@ static struct among a_4[7] =
137
151
  /* 6 */ { 4, s_4_6, -1, 3, 0}
138
152
  };
139
153
 
140
- static symbol s_5_0[2] = { 'i', 'c' };
141
- static symbol s_5_1[4] = { 'a', 'n', 'c', 'e' };
142
- static symbol s_5_2[4] = { 'e', 'n', 'c', 'e' };
143
- static symbol s_5_3[4] = { 'a', 'b', 'l', 'e' };
144
- static symbol s_5_4[4] = { 'i', 'b', 'l', 'e' };
145
- static symbol s_5_5[3] = { 'a', 't', 'e' };
146
- static symbol s_5_6[3] = { 'i', 'v', 'e' };
147
- static symbol s_5_7[3] = { 'i', 'z', 'e' };
148
- static symbol s_5_8[3] = { 'i', 't', 'i' };
149
- static symbol s_5_9[2] = { 'a', 'l' };
150
- static symbol s_5_10[3] = { 'i', 's', 'm' };
151
- static symbol s_5_11[3] = { 'i', 'o', 'n' };
152
- static symbol s_5_12[2] = { 'e', 'r' };
153
- static symbol s_5_13[3] = { 'o', 'u', 's' };
154
- static symbol s_5_14[3] = { 'a', 'n', 't' };
155
- static symbol s_5_15[3] = { 'e', 'n', 't' };
156
- static symbol s_5_16[4] = { 'm', 'e', 'n', 't' };
157
- static symbol s_5_17[5] = { 'e', 'm', 'e', 'n', 't' };
158
- static symbol s_5_18[2] = { 'o', 'u' };
159
-
160
- static struct among a_5[19] =
154
+ static const symbol s_5_0[2] = { 'i', 'c' };
155
+ static const symbol s_5_1[4] = { 'a', 'n', 'c', 'e' };
156
+ static const symbol s_5_2[4] = { 'e', 'n', 'c', 'e' };
157
+ static const symbol s_5_3[4] = { 'a', 'b', 'l', 'e' };
158
+ static const symbol s_5_4[4] = { 'i', 'b', 'l', 'e' };
159
+ static const symbol s_5_5[3] = { 'a', 't', 'e' };
160
+ static const symbol s_5_6[3] = { 'i', 'v', 'e' };
161
+ static const symbol s_5_7[3] = { 'i', 'z', 'e' };
162
+ static const symbol s_5_8[3] = { 'i', 't', 'i' };
163
+ static const symbol s_5_9[2] = { 'a', 'l' };
164
+ static const symbol s_5_10[3] = { 'i', 's', 'm' };
165
+ static const symbol s_5_11[3] = { 'i', 'o', 'n' };
166
+ static const symbol s_5_12[2] = { 'e', 'r' };
167
+ static const symbol s_5_13[3] = { 'o', 'u', 's' };
168
+ static const symbol s_5_14[3] = { 'a', 'n', 't' };
169
+ static const symbol s_5_15[3] = { 'e', 'n', 't' };
170
+ static const symbol s_5_16[4] = { 'm', 'e', 'n', 't' };
171
+ static const symbol s_5_17[5] = { 'e', 'm', 'e', 'n', 't' };
172
+ static const symbol s_5_18[2] = { 'o', 'u' };
173
+
174
+ static const struct among a_5[19] =
161
175
  {
162
176
  /* 0 */ { 2, s_5_0, -1, 1, 0},
163
177
  /* 1 */ { 4, s_5_1, -1, 1, 0},
@@ -180,50 +194,50 @@ static struct among a_5[19] =
180
194
  /* 18 */ { 2, s_5_18, -1, 1, 0}
181
195
  };
182
196
 
183
- static unsigned char g_v[] = { 17, 65, 16, 1 };
184
-
185
- static unsigned char g_v_WXY[] = { 1, 17, 65, 208, 1 };
186
-
187
- static symbol s_0[] = { 's', 's' };
188
- static symbol s_1[] = { 'i' };
189
- static symbol s_2[] = { 'e', 'e' };
190
- static symbol s_3[] = { 'e' };
191
- static symbol s_4[] = { 'e' };
192
- static symbol s_5[] = { 'y' };
193
- static symbol s_6[] = { 'Y' };
194
- static symbol s_7[] = { 'i' };
195
- static symbol s_8[] = { 't', 'i', 'o', 'n' };
196
- static symbol s_9[] = { 'e', 'n', 'c', 'e' };
197
- static symbol s_10[] = { 'a', 'n', 'c', 'e' };
198
- static symbol s_11[] = { 'a', 'b', 'l', 'e' };
199
- static symbol s_12[] = { 'e', 'n', 't' };
200
- static symbol s_13[] = { 'e' };
201
- static symbol s_14[] = { 'i', 'z', 'e' };
202
- static symbol s_15[] = { 'a', 't', 'e' };
203
- static symbol s_16[] = { 'a', 'l' };
204
- static symbol s_17[] = { 'a', 'l' };
205
- static symbol s_18[] = { 'f', 'u', 'l' };
206
- static symbol s_19[] = { 'o', 'u', 's' };
207
- static symbol s_20[] = { 'i', 'v', 'e' };
208
- static symbol s_21[] = { 'b', 'l', 'e' };
209
- static symbol s_22[] = { 'a', 'l' };
210
- static symbol s_23[] = { 'i', 'c' };
211
- static symbol s_24[] = { 's' };
212
- static symbol s_25[] = { 't' };
213
- static symbol s_26[] = { 'e' };
214
- static symbol s_27[] = { 'l' };
215
- static symbol s_28[] = { 'l' };
216
- static symbol s_29[] = { 'y' };
217
- static symbol s_30[] = { 'Y' };
218
- static symbol s_31[] = { 'y' };
219
- static symbol s_32[] = { 'Y' };
220
- static symbol s_33[] = { 'Y' };
221
- static symbol s_34[] = { 'y' };
197
+ static const unsigned char g_v[] = { 17, 65, 16, 1 };
198
+
199
+ static const unsigned char g_v_WXY[] = { 1, 17, 65, 208, 1 };
200
+
201
+ static const symbol s_0[] = { 's', 's' };
202
+ static const symbol s_1[] = { 'i' };
203
+ static const symbol s_2[] = { 'e', 'e' };
204
+ static const symbol s_3[] = { 'e' };
205
+ static const symbol s_4[] = { 'e' };
206
+ static const symbol s_5[] = { 'y' };
207
+ static const symbol s_6[] = { 'Y' };
208
+ static const symbol s_7[] = { 'i' };
209
+ static const symbol s_8[] = { 't', 'i', 'o', 'n' };
210
+ static const symbol s_9[] = { 'e', 'n', 'c', 'e' };
211
+ static const symbol s_10[] = { 'a', 'n', 'c', 'e' };
212
+ static const symbol s_11[] = { 'a', 'b', 'l', 'e' };
213
+ static const symbol s_12[] = { 'e', 'n', 't' };
214
+ static const symbol s_13[] = { 'e' };
215
+ static const symbol s_14[] = { 'i', 'z', 'e' };
216
+ static const symbol s_15[] = { 'a', 't', 'e' };
217
+ static const symbol s_16[] = { 'a', 'l' };
218
+ static const symbol s_17[] = { 'a', 'l' };
219
+ static const symbol s_18[] = { 'f', 'u', 'l' };
220
+ static const symbol s_19[] = { 'o', 'u', 's' };
221
+ static const symbol s_20[] = { 'i', 'v', 'e' };
222
+ static const symbol s_21[] = { 'b', 'l', 'e' };
223
+ static const symbol s_22[] = { 'a', 'l' };
224
+ static const symbol s_23[] = { 'i', 'c' };
225
+ static const symbol s_24[] = { 's' };
226
+ static const symbol s_25[] = { 't' };
227
+ static const symbol s_26[] = { 'e' };
228
+ static const symbol s_27[] = { 'l' };
229
+ static const symbol s_28[] = { 'l' };
230
+ static const symbol s_29[] = { 'y' };
231
+ static const symbol s_30[] = { 'Y' };
232
+ static const symbol s_31[] = { 'y' };
233
+ static const symbol s_32[] = { 'Y' };
234
+ static const symbol s_33[] = { 'Y' };
235
+ static const symbol s_34[] = { 'y' };
222
236
 
223
237
  static int r_shortv(struct SN_env * z) {
224
- if (!(out_grouping_b(z, g_v_WXY, 89, 121))) return 0;
225
- if (!(in_grouping_b(z, g_v, 97, 121))) return 0;
226
- if (!(out_grouping_b(z, g_v, 97, 121))) return 0;
238
+ if (out_grouping_b(z, g_v_WXY, 89, 121, 0)) return 0;
239
+ if (in_grouping_b(z, g_v, 97, 121, 0)) return 0;
240
+ if (out_grouping_b(z, g_v, 97, 121, 0)) return 0;
227
241
  return 1;
228
242
  }
229
243
 
@@ -240,26 +254,24 @@ static int r_R2(struct SN_env * z) {
240
254
  static int r_Step_1a(struct SN_env * z) {
241
255
  int among_var;
242
256
  z->ket = z->c; /* [, line 25 */
257
+ if (z->c <= z->lb || z->p[z->c - 1] != 115) return 0;
243
258
  among_var = find_among_b(z, a_0, 4); /* substring, line 25 */
244
259
  if (!(among_var)) return 0;
245
260
  z->bra = z->c; /* ], line 25 */
246
261
  switch(among_var) {
247
262
  case 0: return 0;
248
263
  case 1:
249
- { int ret;
250
- ret = slice_from_s(z, 2, s_0); /* <-, line 26 */
264
+ { int ret = slice_from_s(z, 2, s_0); /* <-, line 26 */
251
265
  if (ret < 0) return ret;
252
266
  }
253
267
  break;
254
268
  case 2:
255
- { int ret;
256
- ret = slice_from_s(z, 1, s_1); /* <-, line 27 */
269
+ { int ret = slice_from_s(z, 1, s_1); /* <-, line 27 */
257
270
  if (ret < 0) return ret;
258
271
  }
259
272
  break;
260
273
  case 3:
261
- { int ret;
262
- ret = slice_del(z); /* delete, line 29 */
274
+ { int ret = slice_del(z); /* delete, line 29 */
263
275
  if (ret < 0) return ret;
264
276
  }
265
277
  break;
@@ -270,6 +282,7 @@ static int r_Step_1a(struct SN_env * z) {
270
282
  static int r_Step_1b(struct SN_env * z) {
271
283
  int among_var;
272
284
  z->ket = z->c; /* [, line 34 */
285
+ if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 100 && z->p[z->c - 1] != 103)) return 0;
273
286
  among_var = find_among_b(z, a_2, 3); /* substring, line 34 */
274
287
  if (!(among_var)) return 0;
275
288
  z->bra = z->c; /* ], line 34 */
@@ -280,27 +293,24 @@ static int r_Step_1b(struct SN_env * z) {
280
293
  if (ret == 0) return 0; /* call R1, line 35 */
281
294
  if (ret < 0) return ret;
282
295
  }
283
- { int ret;
284
- ret = slice_from_s(z, 2, s_2); /* <-, line 35 */
296
+ { int ret = slice_from_s(z, 2, s_2); /* <-, line 35 */
285
297
  if (ret < 0) return ret;
286
298
  }
287
299
  break;
288
300
  case 2:
289
301
  { int m_test = z->l - z->c; /* test, line 38 */
290
- while(1) { /* gopast, line 38 */
291
- if (!(in_grouping_b(z, g_v, 97, 121))) goto lab0;
292
- break;
293
- lab0:
294
- if (z->c <= z->lb) return 0;
295
- z->c--; /* gopast, line 38 */
302
+ { /* gopast */ /* grouping v, line 38 */
303
+ int ret = out_grouping_b(z, g_v, 97, 121, 1);
304
+ if (ret < 0) return 0;
305
+ z->c -= ret;
296
306
  }
297
307
  z->c = z->l - m_test;
298
308
  }
299
- { int ret;
300
- ret = slice_del(z); /* delete, line 38 */
309
+ { int ret = slice_del(z); /* delete, line 38 */
301
310
  if (ret < 0) return ret;
302
311
  }
303
312
  { int m_test = z->l - z->c; /* test, line 39 */
313
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((68514004 >> (z->p[z->c - 1] & 0x1f)) & 1)) among_var = 3; else
304
314
  among_var = find_among_b(z, a_1, 13); /* substring, line 39 */
305
315
  if (!(among_var)) return 0;
306
316
  z->c = z->l - m_test;
@@ -308,11 +318,9 @@ static int r_Step_1b(struct SN_env * z) {
308
318
  switch(among_var) {
309
319
  case 0: return 0;
310
320
  case 1:
311
- { int ret;
312
- { int c = z->c;
313
- ret = insert_s(z, z->c, z->c, 1, s_3); /* <+, line 41 */
314
- z->c = c;
315
- }
321
+ { int c_keep = z->c;
322
+ int ret = insert_s(z, z->c, z->c, 1, s_3); /* <+, line 41 */
323
+ z->c = c_keep;
316
324
  if (ret < 0) return ret;
317
325
  }
318
326
  break;
@@ -321,8 +329,7 @@ static int r_Step_1b(struct SN_env * z) {
321
329
  if (z->c <= z->lb) return 0;
322
330
  z->c--; /* next, line 44 */
323
331
  z->bra = z->c; /* ], line 44 */
324
- { int ret;
325
- ret = slice_del(z); /* delete, line 44 */
332
+ { int ret = slice_del(z); /* delete, line 44 */
326
333
  if (ret < 0) return ret;
327
334
  }
328
335
  break;
@@ -335,11 +342,9 @@ static int r_Step_1b(struct SN_env * z) {
335
342
  }
336
343
  z->c = z->l - m_test;
337
344
  }
338
- { int ret;
339
- { int c = z->c;
340
- ret = insert_s(z, z->c, z->c, 1, s_4); /* <+, line 45 */
341
- z->c = c;
342
- }
345
+ { int c_keep = z->c;
346
+ int ret = insert_s(z, z->c, z->c, 1, s_4); /* <+, line 45 */
347
+ z->c = c_keep;
343
348
  if (ret < 0) return ret;
344
349
  }
345
350
  break;
@@ -351,24 +356,21 @@ static int r_Step_1b(struct SN_env * z) {
351
356
 
352
357
  static int r_Step_1c(struct SN_env * z) {
353
358
  z->ket = z->c; /* [, line 52 */
354
- { int m = z->l - z->c; (void) m; /* or, line 52 */
359
+ { int m1 = z->l - z->c; (void)m1; /* or, line 52 */
355
360
  if (!(eq_s_b(z, 1, s_5))) goto lab1;
356
361
  goto lab0;
357
362
  lab1:
358
- z->c = z->l - m;
363
+ z->c = z->l - m1;
359
364
  if (!(eq_s_b(z, 1, s_6))) return 0;
360
365
  }
361
366
  lab0:
362
367
  z->bra = z->c; /* ], line 52 */
363
- while(1) { /* gopast, line 53 */
364
- if (!(in_grouping_b(z, g_v, 97, 121))) goto lab2;
365
- break;
366
- lab2:
367
- if (z->c <= z->lb) return 0;
368
- z->c--; /* gopast, line 53 */
368
+ { /* gopast */ /* grouping v, line 53 */
369
+ int ret = out_grouping_b(z, g_v, 97, 121, 1);
370
+ if (ret < 0) return 0;
371
+ z->c -= ret;
369
372
  }
370
- { int ret;
371
- ret = slice_from_s(z, 1, s_7); /* <-, line 54 */
373
+ { int ret = slice_from_s(z, 1, s_7); /* <-, line 54 */
372
374
  if (ret < 0) return ret;
373
375
  }
374
376
  return 1;
@@ -377,6 +379,7 @@ lab0:
377
379
  static int r_Step_2(struct SN_env * z) {
378
380
  int among_var;
379
381
  z->ket = z->c; /* [, line 58 */
382
+ if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((815616 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
380
383
  among_var = find_among_b(z, a_3, 20); /* substring, line 58 */
381
384
  if (!(among_var)) return 0;
382
385
  z->bra = z->c; /* ], line 58 */
@@ -387,86 +390,72 @@ static int r_Step_2(struct SN_env * z) {
387
390
  switch(among_var) {
388
391
  case 0: return 0;
389
392
  case 1:
390
- { int ret;
391
- ret = slice_from_s(z, 4, s_8); /* <-, line 59 */
393
+ { int ret = slice_from_s(z, 4, s_8); /* <-, line 59 */
392
394
  if (ret < 0) return ret;
393
395
  }
394
396
  break;
395
397
  case 2:
396
- { int ret;
397
- ret = slice_from_s(z, 4, s_9); /* <-, line 60 */
398
+ { int ret = slice_from_s(z, 4, s_9); /* <-, line 60 */
398
399
  if (ret < 0) return ret;
399
400
  }
400
401
  break;
401
402
  case 3:
402
- { int ret;
403
- ret = slice_from_s(z, 4, s_10); /* <-, line 61 */
403
+ { int ret = slice_from_s(z, 4, s_10); /* <-, line 61 */
404
404
  if (ret < 0) return ret;
405
405
  }
406
406
  break;
407
407
  case 4:
408
- { int ret;
409
- ret = slice_from_s(z, 4, s_11); /* <-, line 62 */
408
+ { int ret = slice_from_s(z, 4, s_11); /* <-, line 62 */
410
409
  if (ret < 0) return ret;
411
410
  }
412
411
  break;
413
412
  case 5:
414
- { int ret;
415
- ret = slice_from_s(z, 3, s_12); /* <-, line 63 */
413
+ { int ret = slice_from_s(z, 3, s_12); /* <-, line 63 */
416
414
  if (ret < 0) return ret;
417
415
  }
418
416
  break;
419
417
  case 6:
420
- { int ret;
421
- ret = slice_from_s(z, 1, s_13); /* <-, line 64 */
418
+ { int ret = slice_from_s(z, 1, s_13); /* <-, line 64 */
422
419
  if (ret < 0) return ret;
423
420
  }
424
421
  break;
425
422
  case 7:
426
- { int ret;
427
- ret = slice_from_s(z, 3, s_14); /* <-, line 66 */
423
+ { int ret = slice_from_s(z, 3, s_14); /* <-, line 66 */
428
424
  if (ret < 0) return ret;
429
425
  }
430
426
  break;
431
427
  case 8:
432
- { int ret;
433
- ret = slice_from_s(z, 3, s_15); /* <-, line 68 */
428
+ { int ret = slice_from_s(z, 3, s_15); /* <-, line 68 */
434
429
  if (ret < 0) return ret;
435
430
  }
436
431
  break;
437
432
  case 9:
438
- { int ret;
439
- ret = slice_from_s(z, 2, s_16); /* <-, line 69 */
433
+ { int ret = slice_from_s(z, 2, s_16); /* <-, line 69 */
440
434
  if (ret < 0) return ret;
441
435
  }
442
436
  break;
443
437
  case 10:
444
- { int ret;
445
- ret = slice_from_s(z, 2, s_17); /* <-, line 71 */
438
+ { int ret = slice_from_s(z, 2, s_17); /* <-, line 71 */
446
439
  if (ret < 0) return ret;
447
440
  }
448
441
  break;
449
442
  case 11:
450
- { int ret;
451
- ret = slice_from_s(z, 3, s_18); /* <-, line 72 */
443
+ { int ret = slice_from_s(z, 3, s_18); /* <-, line 72 */
452
444
  if (ret < 0) return ret;
453
445
  }
454
446
  break;
455
447
  case 12:
456
- { int ret;
457
- ret = slice_from_s(z, 3, s_19); /* <-, line 74 */
448
+ { int ret = slice_from_s(z, 3, s_19); /* <-, line 74 */
458
449
  if (ret < 0) return ret;
459
450
  }
460
451
  break;
461
452
  case 13:
462
- { int ret;
463
- ret = slice_from_s(z, 3, s_20); /* <-, line 76 */
453
+ { int ret = slice_from_s(z, 3, s_20); /* <-, line 76 */
464
454
  if (ret < 0) return ret;
465
455
  }
466
456
  break;
467
457
  case 14:
468
- { int ret;
469
- ret = slice_from_s(z, 3, s_21); /* <-, line 77 */
458
+ { int ret = slice_from_s(z, 3, s_21); /* <-, line 77 */
470
459
  if (ret < 0) return ret;
471
460
  }
472
461
  break;
@@ -477,6 +466,7 @@ static int r_Step_2(struct SN_env * z) {
477
466
  static int r_Step_3(struct SN_env * z) {
478
467
  int among_var;
479
468
  z->ket = z->c; /* [, line 82 */
469
+ if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((528928 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
480
470
  among_var = find_among_b(z, a_4, 7); /* substring, line 82 */
481
471
  if (!(among_var)) return 0;
482
472
  z->bra = z->c; /* ], line 82 */
@@ -487,20 +477,17 @@ static int r_Step_3(struct SN_env * z) {
487
477
  switch(among_var) {
488
478
  case 0: return 0;
489
479
  case 1:
490
- { int ret;
491
- ret = slice_from_s(z, 2, s_22); /* <-, line 83 */
480
+ { int ret = slice_from_s(z, 2, s_22); /* <-, line 83 */
492
481
  if (ret < 0) return ret;
493
482
  }
494
483
  break;
495
484
  case 2:
496
- { int ret;
497
- ret = slice_from_s(z, 2, s_23); /* <-, line 85 */
485
+ { int ret = slice_from_s(z, 2, s_23); /* <-, line 85 */
498
486
  if (ret < 0) return ret;
499
487
  }
500
488
  break;
501
489
  case 3:
502
- { int ret;
503
- ret = slice_del(z); /* delete, line 87 */
490
+ { int ret = slice_del(z); /* delete, line 87 */
504
491
  if (ret < 0) return ret;
505
492
  }
506
493
  break;
@@ -511,6 +498,7 @@ static int r_Step_3(struct SN_env * z) {
511
498
  static int r_Step_4(struct SN_env * z) {
512
499
  int among_var;
513
500
  z->ket = z->c; /* [, line 92 */
501
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((3961384 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
514
502
  among_var = find_among_b(z, a_5, 19); /* substring, line 92 */
515
503
  if (!(among_var)) return 0;
516
504
  z->bra = z->c; /* ], line 92 */
@@ -521,22 +509,20 @@ static int r_Step_4(struct SN_env * z) {
521
509
  switch(among_var) {
522
510
  case 0: return 0;
523
511
  case 1:
524
- { int ret;
525
- ret = slice_del(z); /* delete, line 95 */
512
+ { int ret = slice_del(z); /* delete, line 95 */
526
513
  if (ret < 0) return ret;
527
514
  }
528
515
  break;
529
516
  case 2:
530
- { int m = z->l - z->c; (void) m; /* or, line 96 */
517
+ { int m1 = z->l - z->c; (void)m1; /* or, line 96 */
531
518
  if (!(eq_s_b(z, 1, s_24))) goto lab1;
532
519
  goto lab0;
533
520
  lab1:
534
- z->c = z->l - m;
521
+ z->c = z->l - m1;
535
522
  if (!(eq_s_b(z, 1, s_25))) return 0;
536
523
  }
537
524
  lab0:
538
- { int ret;
539
- ret = slice_del(z); /* delete, line 96 */
525
+ { int ret = slice_del(z); /* delete, line 96 */
540
526
  if (ret < 0) return ret;
541
527
  }
542
528
  break;
@@ -548,31 +534,30 @@ static int r_Step_5a(struct SN_env * z) {
548
534
  z->ket = z->c; /* [, line 101 */
549
535
  if (!(eq_s_b(z, 1, s_26))) return 0;
550
536
  z->bra = z->c; /* ], line 101 */
551
- { int m = z->l - z->c; (void) m; /* or, line 102 */
537
+ { int m1 = z->l - z->c; (void)m1; /* or, line 102 */
552
538
  { int ret = r_R2(z);
553
539
  if (ret == 0) goto lab1; /* call R2, line 102 */
554
540
  if (ret < 0) return ret;
555
541
  }
556
542
  goto lab0;
557
543
  lab1:
558
- z->c = z->l - m;
544
+ z->c = z->l - m1;
559
545
  { int ret = r_R1(z);
560
546
  if (ret == 0) return 0; /* call R1, line 102 */
561
547
  if (ret < 0) return ret;
562
548
  }
563
- { int m = z->l - z->c; (void) m; /* not, line 102 */
549
+ { int m2 = z->l - z->c; (void)m2; /* not, line 102 */
564
550
  { int ret = r_shortv(z);
565
551
  if (ret == 0) goto lab2; /* call shortv, line 102 */
566
552
  if (ret < 0) return ret;
567
553
  }
568
554
  return 0;
569
555
  lab2:
570
- z->c = z->l - m;
556
+ z->c = z->l - m2;
571
557
  }
572
558
  }
573
559
  lab0:
574
- { int ret;
575
- ret = slice_del(z); /* delete, line 103 */
560
+ { int ret = slice_del(z); /* delete, line 103 */
576
561
  if (ret < 0) return ret;
577
562
  }
578
563
  return 1;
@@ -587,8 +572,7 @@ static int r_Step_5b(struct SN_env * z) {
587
572
  if (ret < 0) return ret;
588
573
  }
589
574
  if (!(eq_s_b(z, 1, s_28))) return 0;
590
- { int ret;
591
- ret = slice_del(z); /* delete, line 109 */
575
+ { int ret = slice_del(z); /* delete, line 109 */
592
576
  if (ret < 0) return ret;
593
577
  }
594
578
  return 1;
@@ -596,181 +580,170 @@ static int r_Step_5b(struct SN_env * z) {
596
580
 
597
581
  extern int porter_ISO_8859_1_stem(struct SN_env * z) {
598
582
  z->B[0] = 0; /* unset Y_found, line 115 */
599
- { int c = z->c; /* do, line 116 */
583
+ { int c1 = z->c; /* do, line 116 */
600
584
  z->bra = z->c; /* [, line 116 */
601
585
  if (!(eq_s(z, 1, s_29))) goto lab0;
602
586
  z->ket = z->c; /* ], line 116 */
603
- { int ret;
604
- ret = slice_from_s(z, 1, s_30); /* <-, line 116 */
587
+ { int ret = slice_from_s(z, 1, s_30); /* <-, line 116 */
605
588
  if (ret < 0) return ret;
606
589
  }
607
590
  z->B[0] = 1; /* set Y_found, line 116 */
608
591
  lab0:
609
- z->c = c;
592
+ z->c = c1;
610
593
  }
611
- { int c = z->c; /* do, line 117 */
594
+ { int c2 = z->c; /* do, line 117 */
612
595
  while(1) { /* repeat, line 117 */
613
- int c = z->c;
596
+ int c3 = z->c;
614
597
  while(1) { /* goto, line 117 */
615
- int c = z->c;
616
- if (!(in_grouping(z, g_v, 97, 121))) goto lab3;
598
+ int c4 = z->c;
599
+ if (in_grouping(z, g_v, 97, 121, 0)) goto lab3;
617
600
  z->bra = z->c; /* [, line 117 */
618
601
  if (!(eq_s(z, 1, s_31))) goto lab3;
619
602
  z->ket = z->c; /* ], line 117 */
620
- z->c = c;
603
+ z->c = c4;
621
604
  break;
622
605
  lab3:
623
- z->c = c;
606
+ z->c = c4;
624
607
  if (z->c >= z->l) goto lab2;
625
608
  z->c++; /* goto, line 117 */
626
609
  }
627
- { int ret;
628
- ret = slice_from_s(z, 1, s_32); /* <-, line 117 */
610
+ { int ret = slice_from_s(z, 1, s_32); /* <-, line 117 */
629
611
  if (ret < 0) return ret;
630
612
  }
631
613
  z->B[0] = 1; /* set Y_found, line 117 */
632
614
  continue;
633
615
  lab2:
634
- z->c = c;
616
+ z->c = c3;
635
617
  break;
636
618
  }
637
- z->c = c;
619
+ z->c = c2;
638
620
  }
639
621
  z->I[0] = z->l;
640
622
  z->I[1] = z->l;
641
- { int c = z->c; /* do, line 121 */
642
- while(1) { /* gopast, line 122 */
643
- if (!(in_grouping(z, g_v, 97, 121))) goto lab5;
644
- break;
645
- lab5:
646
- if (z->c >= z->l) goto lab4;
647
- z->c++; /* gopast, line 122 */
623
+ { int c5 = z->c; /* do, line 121 */
624
+ { /* gopast */ /* grouping v, line 122 */
625
+ int ret = out_grouping(z, g_v, 97, 121, 1);
626
+ if (ret < 0) goto lab4;
627
+ z->c += ret;
648
628
  }
649
- while(1) { /* gopast, line 122 */
650
- if (!(out_grouping(z, g_v, 97, 121))) goto lab6;
651
- break;
652
- lab6:
653
- if (z->c >= z->l) goto lab4;
654
- z->c++; /* gopast, line 122 */
629
+ { /* gopast */ /* non v, line 122 */
630
+ int ret = in_grouping(z, g_v, 97, 121, 1);
631
+ if (ret < 0) goto lab4;
632
+ z->c += ret;
655
633
  }
656
634
  z->I[0] = z->c; /* setmark p1, line 122 */
657
- while(1) { /* gopast, line 123 */
658
- if (!(in_grouping(z, g_v, 97, 121))) goto lab7;
659
- break;
660
- lab7:
661
- if (z->c >= z->l) goto lab4;
662
- z->c++; /* gopast, line 123 */
635
+ { /* gopast */ /* grouping v, line 123 */
636
+ int ret = out_grouping(z, g_v, 97, 121, 1);
637
+ if (ret < 0) goto lab4;
638
+ z->c += ret;
663
639
  }
664
- while(1) { /* gopast, line 123 */
665
- if (!(out_grouping(z, g_v, 97, 121))) goto lab8;
666
- break;
667
- lab8:
668
- if (z->c >= z->l) goto lab4;
669
- z->c++; /* gopast, line 123 */
640
+ { /* gopast */ /* non v, line 123 */
641
+ int ret = in_grouping(z, g_v, 97, 121, 1);
642
+ if (ret < 0) goto lab4;
643
+ z->c += ret;
670
644
  }
671
645
  z->I[1] = z->c; /* setmark p2, line 123 */
672
646
  lab4:
673
- z->c = c;
647
+ z->c = c5;
674
648
  }
675
649
  z->lb = z->c; z->c = z->l; /* backwards, line 126 */
676
650
 
677
- { int m = z->l - z->c; (void) m; /* do, line 127 */
651
+ { int m6 = z->l - z->c; (void)m6; /* do, line 127 */
678
652
  { int ret = r_Step_1a(z);
679
- if (ret == 0) goto lab9; /* call Step_1a, line 127 */
653
+ if (ret == 0) goto lab5; /* call Step_1a, line 127 */
680
654
  if (ret < 0) return ret;
681
655
  }
682
- lab9:
683
- z->c = z->l - m;
656
+ lab5:
657
+ z->c = z->l - m6;
684
658
  }
685
- { int m = z->l - z->c; (void) m; /* do, line 128 */
659
+ { int m7 = z->l - z->c; (void)m7; /* do, line 128 */
686
660
  { int ret = r_Step_1b(z);
687
- if (ret == 0) goto lab10; /* call Step_1b, line 128 */
661
+ if (ret == 0) goto lab6; /* call Step_1b, line 128 */
688
662
  if (ret < 0) return ret;
689
663
  }
690
- lab10:
691
- z->c = z->l - m;
664
+ lab6:
665
+ z->c = z->l - m7;
692
666
  }
693
- { int m = z->l - z->c; (void) m; /* do, line 129 */
667
+ { int m8 = z->l - z->c; (void)m8; /* do, line 129 */
694
668
  { int ret = r_Step_1c(z);
695
- if (ret == 0) goto lab11; /* call Step_1c, line 129 */
669
+ if (ret == 0) goto lab7; /* call Step_1c, line 129 */
696
670
  if (ret < 0) return ret;
697
671
  }
698
- lab11:
699
- z->c = z->l - m;
672
+ lab7:
673
+ z->c = z->l - m8;
700
674
  }
701
- { int m = z->l - z->c; (void) m; /* do, line 130 */
675
+ { int m9 = z->l - z->c; (void)m9; /* do, line 130 */
702
676
  { int ret = r_Step_2(z);
703
- if (ret == 0) goto lab12; /* call Step_2, line 130 */
677
+ if (ret == 0) goto lab8; /* call Step_2, line 130 */
704
678
  if (ret < 0) return ret;
705
679
  }
706
- lab12:
707
- z->c = z->l - m;
680
+ lab8:
681
+ z->c = z->l - m9;
708
682
  }
709
- { int m = z->l - z->c; (void) m; /* do, line 131 */
683
+ { int m10 = z->l - z->c; (void)m10; /* do, line 131 */
710
684
  { int ret = r_Step_3(z);
711
- if (ret == 0) goto lab13; /* call Step_3, line 131 */
685
+ if (ret == 0) goto lab9; /* call Step_3, line 131 */
712
686
  if (ret < 0) return ret;
713
687
  }
714
- lab13:
715
- z->c = z->l - m;
688
+ lab9:
689
+ z->c = z->l - m10;
716
690
  }
717
- { int m = z->l - z->c; (void) m; /* do, line 132 */
691
+ { int m11 = z->l - z->c; (void)m11; /* do, line 132 */
718
692
  { int ret = r_Step_4(z);
719
- if (ret == 0) goto lab14; /* call Step_4, line 132 */
693
+ if (ret == 0) goto lab10; /* call Step_4, line 132 */
720
694
  if (ret < 0) return ret;
721
695
  }
722
- lab14:
723
- z->c = z->l - m;
696
+ lab10:
697
+ z->c = z->l - m11;
724
698
  }
725
- { int m = z->l - z->c; (void) m; /* do, line 133 */
699
+ { int m12 = z->l - z->c; (void)m12; /* do, line 133 */
726
700
  { int ret = r_Step_5a(z);
727
- if (ret == 0) goto lab15; /* call Step_5a, line 133 */
701
+ if (ret == 0) goto lab11; /* call Step_5a, line 133 */
728
702
  if (ret < 0) return ret;
729
703
  }
730
- lab15:
731
- z->c = z->l - m;
704
+ lab11:
705
+ z->c = z->l - m12;
732
706
  }
733
- { int m = z->l - z->c; (void) m; /* do, line 134 */
707
+ { int m13 = z->l - z->c; (void)m13; /* do, line 134 */
734
708
  { int ret = r_Step_5b(z);
735
- if (ret == 0) goto lab16; /* call Step_5b, line 134 */
709
+ if (ret == 0) goto lab12; /* call Step_5b, line 134 */
736
710
  if (ret < 0) return ret;
737
711
  }
738
- lab16:
739
- z->c = z->l - m;
712
+ lab12:
713
+ z->c = z->l - m13;
740
714
  }
741
715
  z->c = z->lb;
742
- { int c = z->c; /* do, line 137 */
743
- if (!(z->B[0])) goto lab17; /* Boolean test Y_found, line 137 */
716
+ { int c14 = z->c; /* do, line 137 */
717
+ if (!(z->B[0])) goto lab13; /* Boolean test Y_found, line 137 */
744
718
  while(1) { /* repeat, line 137 */
745
- int c = z->c;
719
+ int c15 = z->c;
746
720
  while(1) { /* goto, line 137 */
747
- int c = z->c;
721
+ int c16 = z->c;
748
722
  z->bra = z->c; /* [, line 137 */
749
- if (!(eq_s(z, 1, s_33))) goto lab19;
723
+ if (!(eq_s(z, 1, s_33))) goto lab15;
750
724
  z->ket = z->c; /* ], line 137 */
751
- z->c = c;
725
+ z->c = c16;
752
726
  break;
753
- lab19:
754
- z->c = c;
755
- if (z->c >= z->l) goto lab18;
727
+ lab15:
728
+ z->c = c16;
729
+ if (z->c >= z->l) goto lab14;
756
730
  z->c++; /* goto, line 137 */
757
731
  }
758
- { int ret;
759
- ret = slice_from_s(z, 1, s_34); /* <-, line 137 */
732
+ { int ret = slice_from_s(z, 1, s_34); /* <-, line 137 */
760
733
  if (ret < 0) return ret;
761
734
  }
762
735
  continue;
763
- lab18:
764
- z->c = c;
736
+ lab14:
737
+ z->c = c15;
765
738
  break;
766
739
  }
767
- lab17:
768
- z->c = c;
740
+ lab13:
741
+ z->c = c14;
769
742
  }
770
743
  return 1;
771
744
  }
772
745
 
773
746
  extern struct SN_env * porter_ISO_8859_1_create_env(void) { return SN_create_env(0, 2, 1); }
774
747
 
775
- extern void porter_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z); }
748
+ extern void porter_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
776
749