isomorfeus-ferret 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +612 -0
  3. data/README.md +44 -0
  4. data/ext/isomorfeus_ferret_ext/benchmark.c +223 -0
  5. data/ext/isomorfeus_ferret_ext/benchmark.h +45 -0
  6. data/ext/isomorfeus_ferret_ext/benchmarks_all.h +25 -0
  7. data/ext/isomorfeus_ferret_ext/bm_bitvector.c +123 -0
  8. data/ext/isomorfeus_ferret_ext/bm_hash.c +118 -0
  9. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +40 -0
  10. data/ext/isomorfeus_ferret_ext/bm_store.c +93 -0
  11. data/ext/isomorfeus_ferret_ext/email.rl +21 -0
  12. data/ext/isomorfeus_ferret_ext/extconf.rb +5 -0
  13. data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -0
  14. data/ext/isomorfeus_ferret_ext/frb_analysis.c +2577 -0
  15. data/ext/isomorfeus_ferret_ext/frb_index.c +3457 -0
  16. data/ext/isomorfeus_ferret_ext/frb_lang.c +9 -0
  17. data/ext/isomorfeus_ferret_ext/frb_lang.h +17 -0
  18. data/ext/isomorfeus_ferret_ext/frb_qparser.c +629 -0
  19. data/ext/isomorfeus_ferret_ext/frb_search.c +4460 -0
  20. data/ext/isomorfeus_ferret_ext/frb_store.c +515 -0
  21. data/ext/isomorfeus_ferret_ext/frb_threading.h +30 -0
  22. data/ext/isomorfeus_ferret_ext/frb_utils.c +1127 -0
  23. data/ext/isomorfeus_ferret_ext/frt_analysis.c +1644 -0
  24. data/ext/isomorfeus_ferret_ext/frt_analysis.h +247 -0
  25. data/ext/isomorfeus_ferret_ext/frt_array.c +124 -0
  26. data/ext/isomorfeus_ferret_ext/frt_array.h +54 -0
  27. data/ext/isomorfeus_ferret_ext/frt_bitvector.c +95 -0
  28. data/ext/isomorfeus_ferret_ext/frt_bitvector.h +586 -0
  29. data/ext/isomorfeus_ferret_ext/frt_compound_io.c +374 -0
  30. data/ext/isomorfeus_ferret_ext/frt_config.h +44 -0
  31. data/ext/isomorfeus_ferret_ext/frt_document.c +134 -0
  32. data/ext/isomorfeus_ferret_ext/frt_document.h +52 -0
  33. data/ext/isomorfeus_ferret_ext/frt_except.c +95 -0
  34. data/ext/isomorfeus_ferret_ext/frt_except.h +188 -0
  35. data/ext/isomorfeus_ferret_ext/frt_field_index.c +233 -0
  36. data/ext/isomorfeus_ferret_ext/frt_field_index.h +42 -0
  37. data/ext/isomorfeus_ferret_ext/frt_filter.c +157 -0
  38. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +502 -0
  39. data/ext/isomorfeus_ferret_ext/frt_global.c +427 -0
  40. data/ext/isomorfeus_ferret_ext/frt_global.h +290 -0
  41. data/ext/isomorfeus_ferret_ext/frt_hash.c +518 -0
  42. data/ext/isomorfeus_ferret_ext/frt_hash.h +466 -0
  43. data/ext/isomorfeus_ferret_ext/frt_hashset.c +191 -0
  44. data/ext/isomorfeus_ferret_ext/frt_hashset.h +206 -0
  45. data/ext/isomorfeus_ferret_ext/frt_helper.c +62 -0
  46. data/ext/isomorfeus_ferret_ext/frt_helper.h +13 -0
  47. data/ext/isomorfeus_ferret_ext/frt_ind.c +353 -0
  48. data/ext/isomorfeus_ferret_ext/frt_ind.h +54 -0
  49. data/ext/isomorfeus_ferret_ext/frt_index.c +6377 -0
  50. data/ext/isomorfeus_ferret_ext/frt_index.h +880 -0
  51. data/ext/isomorfeus_ferret_ext/frt_lang.c +104 -0
  52. data/ext/isomorfeus_ferret_ext/frt_lang.h +44 -0
  53. data/ext/isomorfeus_ferret_ext/frt_mempool.c +87 -0
  54. data/ext/isomorfeus_ferret_ext/frt_mempool.h +33 -0
  55. data/ext/isomorfeus_ferret_ext/frt_multimapper.c +349 -0
  56. data/ext/isomorfeus_ferret_ext/frt_multimapper.h +52 -0
  57. data/ext/isomorfeus_ferret_ext/frt_posh.c +1006 -0
  58. data/ext/isomorfeus_ferret_ext/frt_posh.h +973 -0
  59. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.c +147 -0
  60. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.h +147 -0
  61. data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +1612 -0
  62. data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +157 -0
  63. data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +209 -0
  64. data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +281 -0
  65. data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +147 -0
  66. data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +672 -0
  67. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +3084 -0
  68. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +1182 -0
  69. data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +98 -0
  70. data/ext/isomorfeus_ferret_ext/frt_q_range.c +665 -0
  71. data/ext/isomorfeus_ferret_ext/frt_q_span.c +2386 -0
  72. data/ext/isomorfeus_ferret_ext/frt_q_term.c +311 -0
  73. data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +166 -0
  74. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +460 -0
  75. data/ext/isomorfeus_ferret_ext/frt_scanner.c +899 -0
  76. data/ext/isomorfeus_ferret_ext/frt_scanner.h +28 -0
  77. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +6705 -0
  78. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +4419 -0
  79. data/ext/isomorfeus_ferret_ext/frt_search.c +1824 -0
  80. data/ext/isomorfeus_ferret_ext/frt_search.h +924 -0
  81. data/ext/isomorfeus_ferret_ext/frt_similarity.c +150 -0
  82. data/ext/isomorfeus_ferret_ext/frt_similarity.h +79 -0
  83. data/ext/isomorfeus_ferret_ext/frt_sort.c +796 -0
  84. data/ext/isomorfeus_ferret_ext/frt_stopwords.c +395 -0
  85. data/ext/isomorfeus_ferret_ext/frt_store.c +680 -0
  86. data/ext/isomorfeus_ferret_ext/frt_store.h +789 -0
  87. data/ext/isomorfeus_ferret_ext/frt_term_vectors.c +72 -0
  88. data/ext/isomorfeus_ferret_ext/frt_threading.h +23 -0
  89. data/ext/isomorfeus_ferret_ext/frt_win32.h +54 -0
  90. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +409 -0
  91. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +95 -0
  92. data/ext/isomorfeus_ferret_ext/libstemmer.c +93 -0
  93. data/ext/isomorfeus_ferret_ext/libstemmer.h +73 -0
  94. data/ext/isomorfeus_ferret_ext/q_parser.y +1366 -0
  95. data/ext/isomorfeus_ferret_ext/scanner.h +28 -0
  96. data/ext/isomorfeus_ferret_ext/scanner.in +43 -0
  97. data/ext/isomorfeus_ferret_ext/scanner.rl +84 -0
  98. data/ext/isomorfeus_ferret_ext/scanner_mb.rl +200 -0
  99. data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +85 -0
  100. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +324 -0
  101. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +7 -0
  102. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +610 -0
  103. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +6 -0
  104. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +1104 -0
  105. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +6 -0
  106. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +749 -0
  107. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +7 -0
  108. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +1233 -0
  109. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +6 -0
  110. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +490 -0
  111. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +6 -0
  112. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1217 -0
  113. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +7 -0
  114. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +1052 -0
  115. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +6 -0
  116. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +283 -0
  117. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +6 -0
  118. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +735 -0
  119. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +6 -0
  120. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +1003 -0
  121. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +7 -0
  122. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +1079 -0
  123. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +6 -0
  124. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +293 -0
  125. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +6 -0
  126. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +984 -0
  127. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +6 -0
  128. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +686 -0
  129. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +6 -0
  130. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +325 -0
  131. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +6 -0
  132. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +620 -0
  133. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +6 -0
  134. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +1111 -0
  135. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +6 -0
  136. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +754 -0
  137. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +6 -0
  138. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +1242 -0
  139. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +6 -0
  140. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +495 -0
  141. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +6 -0
  142. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +1220 -0
  143. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +6 -0
  144. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +1059 -0
  145. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +6 -0
  146. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +285 -0
  147. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +6 -0
  148. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +741 -0
  149. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +6 -0
  150. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +1009 -0
  151. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +6 -0
  152. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +990 -0
  153. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +6 -0
  154. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +680 -0
  155. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +6 -0
  156. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +1083 -0
  157. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +6 -0
  158. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +294 -0
  159. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +6 -0
  160. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +2191 -0
  161. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +6 -0
  162. data/ext/isomorfeus_ferret_ext/stem_api.c +66 -0
  163. data/ext/isomorfeus_ferret_ext/stem_api.h +26 -0
  164. data/ext/isomorfeus_ferret_ext/stem_header.h +57 -0
  165. data/ext/isomorfeus_ferret_ext/stem_modules.h +190 -0
  166. data/ext/isomorfeus_ferret_ext/stem_modules.txt +50 -0
  167. data/ext/isomorfeus_ferret_ext/stem_utilities.c +478 -0
  168. data/ext/isomorfeus_ferret_ext/test.c +850 -0
  169. data/ext/isomorfeus_ferret_ext/test.h +416 -0
  170. data/ext/isomorfeus_ferret_ext/test_1710.c +63 -0
  171. data/ext/isomorfeus_ferret_ext/test_analysis.c +1221 -0
  172. data/ext/isomorfeus_ferret_ext/test_array.c +272 -0
  173. data/ext/isomorfeus_ferret_ext/test_bitvector.c +600 -0
  174. data/ext/isomorfeus_ferret_ext/test_compound_io.c +170 -0
  175. data/ext/isomorfeus_ferret_ext/test_document.c +156 -0
  176. data/ext/isomorfeus_ferret_ext/test_except.c +244 -0
  177. data/ext/isomorfeus_ferret_ext/test_fields.c +522 -0
  178. data/ext/isomorfeus_ferret_ext/test_file_deleter.c +185 -0
  179. data/ext/isomorfeus_ferret_ext/test_filter.c +331 -0
  180. data/ext/isomorfeus_ferret_ext/test_fs_store.c +25 -0
  181. data/ext/isomorfeus_ferret_ext/test_global.c +299 -0
  182. data/ext/isomorfeus_ferret_ext/test_hash.c +485 -0
  183. data/ext/isomorfeus_ferret_ext/test_hashset.c +288 -0
  184. data/ext/isomorfeus_ferret_ext/test_helper.c +47 -0
  185. data/ext/isomorfeus_ferret_ext/test_highlighter.c +548 -0
  186. data/ext/isomorfeus_ferret_ext/test_index.c +2323 -0
  187. data/ext/isomorfeus_ferret_ext/test_lang.c +74 -0
  188. data/ext/isomorfeus_ferret_ext/test_mempool.c +102 -0
  189. data/ext/isomorfeus_ferret_ext/test_multimapper.c +64 -0
  190. data/ext/isomorfeus_ferret_ext/test_priorityqueue.c +213 -0
  191. data/ext/isomorfeus_ferret_ext/test_q_const_score.c +84 -0
  192. data/ext/isomorfeus_ferret_ext/test_q_filtered.c +61 -0
  193. data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +241 -0
  194. data/ext/isomorfeus_ferret_ext/test_q_parser.c +464 -0
  195. data/ext/isomorfeus_ferret_ext/test_q_span.c +575 -0
  196. data/ext/isomorfeus_ferret_ext/test_ram_store.c +77 -0
  197. data/ext/isomorfeus_ferret_ext/test_search.c +1874 -0
  198. data/ext/isomorfeus_ferret_ext/test_segments.c +167 -0
  199. data/ext/isomorfeus_ferret_ext/test_similarity.c +25 -0
  200. data/ext/isomorfeus_ferret_ext/test_sort.c +333 -0
  201. data/ext/isomorfeus_ferret_ext/test_store.c +591 -0
  202. data/ext/isomorfeus_ferret_ext/test_store.h +3 -0
  203. data/ext/isomorfeus_ferret_ext/test_term.c +351 -0
  204. data/ext/isomorfeus_ferret_ext/test_term_vectors.c +373 -0
  205. data/ext/isomorfeus_ferret_ext/test_test.c +83 -0
  206. data/ext/isomorfeus_ferret_ext/test_threading.c +188 -0
  207. data/ext/isomorfeus_ferret_ext/testhelper.c +561 -0
  208. data/ext/isomorfeus_ferret_ext/testhelper.h +25 -0
  209. data/ext/isomorfeus_ferret_ext/tests_all.h +87 -0
  210. data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +1854 -0
  211. data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +1999 -0
  212. data/ext/isomorfeus_ferret_ext/url.rl +27 -0
  213. data/ext/isomorfeus_ferret_ext/word_list.h +15156 -0
  214. data/lib/isomorfeus/ferret/document.rb +132 -0
  215. data/lib/isomorfeus/ferret/field_symbol.rb +85 -0
  216. data/lib/isomorfeus/ferret/index/field_infos.rb +48 -0
  217. data/lib/isomorfeus/ferret/index/index.rb +970 -0
  218. data/lib/isomorfeus/ferret/monitor.rb +323 -0
  219. data/lib/isomorfeus/ferret/stdlib_patches.rb +151 -0
  220. data/lib/isomorfeus/ferret/version.rb +5 -0
  221. data/lib/isomorfeus-ferret.rb +8 -0
  222. metadata +307 -0
@@ -0,0 +1,1111 @@
1
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
2
+
3
+ #include "stem_header.h"
4
+
5
+ extern int english_UTF_8_stem(struct SN_env * z);
6
+
7
+ static int r_exception2(struct SN_env * z);
8
+ static int r_exception1(struct SN_env * z);
9
+ static int r_Step_5(struct SN_env * z);
10
+ static int r_Step_4(struct SN_env * z);
11
+ static int r_Step_3(struct SN_env * z);
12
+ static int r_Step_2(struct SN_env * z);
13
+ static int r_Step_1c(struct SN_env * z);
14
+ static int r_Step_1b(struct SN_env * z);
15
+ static int r_Step_1a(struct SN_env * z);
16
+ static int r_R2(struct SN_env * z);
17
+ static int r_R1(struct SN_env * z);
18
+ static int r_shortv(struct SN_env * z);
19
+ static int r_mark_regions(struct SN_env * z);
20
+ static int r_postlude(struct SN_env * z);
21
+ static int r_prelude(struct SN_env * z);
22
+
23
+ extern struct SN_env * english_UTF_8_create_env(void);
24
+ extern void english_UTF_8_close_env(struct SN_env * z);
25
+
26
+ static const symbol s_0_0[5] = { 'a', 'r', 's', 'e', 'n' };
27
+ static const symbol s_0_1[6] = { 'c', 'o', 'm', 'm', 'u', 'n' };
28
+ static const symbol s_0_2[5] = { 'g', 'e', 'n', 'e', 'r' };
29
+
30
+ static const struct among a_0[3] =
31
+ {
32
+ /* 0 */ { 5, s_0_0, -1, -1, 0},
33
+ /* 1 */ { 6, s_0_1, -1, -1, 0},
34
+ /* 2 */ { 5, s_0_2, -1, -1, 0}
35
+ };
36
+
37
+ static const symbol s_1_0[1] = { '\'' };
38
+ static const symbol s_1_1[3] = { '\'', 's', '\'' };
39
+ static const symbol s_1_2[2] = { '\'', 's' };
40
+
41
+ static const struct among a_1[3] =
42
+ {
43
+ /* 0 */ { 1, s_1_0, -1, 1, 0},
44
+ /* 1 */ { 3, s_1_1, 0, 1, 0},
45
+ /* 2 */ { 2, s_1_2, -1, 1, 0}
46
+ };
47
+
48
+ static const symbol s_2_0[3] = { 'i', 'e', 'd' };
49
+ static const symbol s_2_1[1] = { 's' };
50
+ static const symbol s_2_2[3] = { 'i', 'e', 's' };
51
+ static const symbol s_2_3[4] = { 's', 's', 'e', 's' };
52
+ static const symbol s_2_4[2] = { 's', 's' };
53
+ static const symbol s_2_5[2] = { 'u', 's' };
54
+
55
+ static const struct among a_2[6] =
56
+ {
57
+ /* 0 */ { 3, s_2_0, -1, 2, 0},
58
+ /* 1 */ { 1, s_2_1, -1, 3, 0},
59
+ /* 2 */ { 3, s_2_2, 1, 2, 0},
60
+ /* 3 */ { 4, s_2_3, 1, 1, 0},
61
+ /* 4 */ { 2, s_2_4, 1, -1, 0},
62
+ /* 5 */ { 2, s_2_5, 1, -1, 0}
63
+ };
64
+
65
+ static const symbol s_3_1[2] = { 'b', 'b' };
66
+ static const symbol s_3_2[2] = { 'd', 'd' };
67
+ static const symbol s_3_3[2] = { 'f', 'f' };
68
+ static const symbol s_3_4[2] = { 'g', 'g' };
69
+ static const symbol s_3_5[2] = { 'b', 'l' };
70
+ static const symbol s_3_6[2] = { 'm', 'm' };
71
+ static const symbol s_3_7[2] = { 'n', 'n' };
72
+ static const symbol s_3_8[2] = { 'p', 'p' };
73
+ static const symbol s_3_9[2] = { 'r', 'r' };
74
+ static const symbol s_3_10[2] = { 'a', 't' };
75
+ static const symbol s_3_11[2] = { 't', 't' };
76
+ static const symbol s_3_12[2] = { 'i', 'z' };
77
+
78
+ static const struct among a_3[13] =
79
+ {
80
+ /* 0 */ { 0, 0, -1, 3, 0},
81
+ /* 1 */ { 2, s_3_1, 0, 2, 0},
82
+ /* 2 */ { 2, s_3_2, 0, 2, 0},
83
+ /* 3 */ { 2, s_3_3, 0, 2, 0},
84
+ /* 4 */ { 2, s_3_4, 0, 2, 0},
85
+ /* 5 */ { 2, s_3_5, 0, 1, 0},
86
+ /* 6 */ { 2, s_3_6, 0, 2, 0},
87
+ /* 7 */ { 2, s_3_7, 0, 2, 0},
88
+ /* 8 */ { 2, s_3_8, 0, 2, 0},
89
+ /* 9 */ { 2, s_3_9, 0, 2, 0},
90
+ /* 10 */ { 2, s_3_10, 0, 1, 0},
91
+ /* 11 */ { 2, s_3_11, 0, 2, 0},
92
+ /* 12 */ { 2, s_3_12, 0, 1, 0}
93
+ };
94
+
95
+ static const symbol s_4_0[2] = { 'e', 'd' };
96
+ static const symbol s_4_1[3] = { 'e', 'e', 'd' };
97
+ static const symbol s_4_2[3] = { 'i', 'n', 'g' };
98
+ static const symbol s_4_3[4] = { 'e', 'd', 'l', 'y' };
99
+ static const symbol s_4_4[5] = { 'e', 'e', 'd', 'l', 'y' };
100
+ static const symbol s_4_5[5] = { 'i', 'n', 'g', 'l', 'y' };
101
+
102
+ static const struct among a_4[6] =
103
+ {
104
+ /* 0 */ { 2, s_4_0, -1, 2, 0},
105
+ /* 1 */ { 3, s_4_1, 0, 1, 0},
106
+ /* 2 */ { 3, s_4_2, -1, 2, 0},
107
+ /* 3 */ { 4, s_4_3, -1, 2, 0},
108
+ /* 4 */ { 5, s_4_4, 3, 1, 0},
109
+ /* 5 */ { 5, s_4_5, -1, 2, 0}
110
+ };
111
+
112
+ static const symbol s_5_0[4] = { 'a', 'n', 'c', 'i' };
113
+ static const symbol s_5_1[4] = { 'e', 'n', 'c', 'i' };
114
+ static const symbol s_5_2[3] = { 'o', 'g', 'i' };
115
+ static const symbol s_5_3[2] = { 'l', 'i' };
116
+ static const symbol s_5_4[3] = { 'b', 'l', 'i' };
117
+ static const symbol s_5_5[4] = { 'a', 'b', 'l', 'i' };
118
+ static const symbol s_5_6[4] = { 'a', 'l', 'l', 'i' };
119
+ static const symbol s_5_7[5] = { 'f', 'u', 'l', 'l', 'i' };
120
+ static const symbol s_5_8[6] = { 'l', 'e', 's', 's', 'l', 'i' };
121
+ static const symbol s_5_9[5] = { 'o', 'u', 's', 'l', 'i' };
122
+ static const symbol s_5_10[5] = { 'e', 'n', 't', 'l', 'i' };
123
+ static const symbol s_5_11[5] = { 'a', 'l', 'i', 't', 'i' };
124
+ static const symbol s_5_12[6] = { 'b', 'i', 'l', 'i', 't', 'i' };
125
+ static const symbol s_5_13[5] = { 'i', 'v', 'i', 't', 'i' };
126
+ static const symbol s_5_14[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
127
+ static const symbol s_5_15[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
128
+ static const symbol s_5_16[5] = { 'a', 'l', 'i', 's', 'm' };
129
+ static const symbol s_5_17[5] = { 'a', 't', 'i', 'o', 'n' };
130
+ static const symbol s_5_18[7] = { 'i', 'z', 'a', 't', 'i', 'o', 'n' };
131
+ static const symbol s_5_19[4] = { 'i', 'z', 'e', 'r' };
132
+ static const symbol s_5_20[4] = { 'a', 't', 'o', 'r' };
133
+ static const symbol s_5_21[7] = { 'i', 'v', 'e', 'n', 'e', 's', 's' };
134
+ static const symbol s_5_22[7] = { 'f', 'u', 'l', 'n', 'e', 's', 's' };
135
+ static const symbol s_5_23[7] = { 'o', 'u', 's', 'n', 'e', 's', 's' };
136
+
137
+ static const struct among a_5[24] =
138
+ {
139
+ /* 0 */ { 4, s_5_0, -1, 3, 0},
140
+ /* 1 */ { 4, s_5_1, -1, 2, 0},
141
+ /* 2 */ { 3, s_5_2, -1, 13, 0},
142
+ /* 3 */ { 2, s_5_3, -1, 16, 0},
143
+ /* 4 */ { 3, s_5_4, 3, 12, 0},
144
+ /* 5 */ { 4, s_5_5, 4, 4, 0},
145
+ /* 6 */ { 4, s_5_6, 3, 8, 0},
146
+ /* 7 */ { 5, s_5_7, 3, 14, 0},
147
+ /* 8 */ { 6, s_5_8, 3, 15, 0},
148
+ /* 9 */ { 5, s_5_9, 3, 10, 0},
149
+ /* 10 */ { 5, s_5_10, 3, 5, 0},
150
+ /* 11 */ { 5, s_5_11, -1, 8, 0},
151
+ /* 12 */ { 6, s_5_12, -1, 12, 0},
152
+ /* 13 */ { 5, s_5_13, -1, 11, 0},
153
+ /* 14 */ { 6, s_5_14, -1, 1, 0},
154
+ /* 15 */ { 7, s_5_15, 14, 7, 0},
155
+ /* 16 */ { 5, s_5_16, -1, 8, 0},
156
+ /* 17 */ { 5, s_5_17, -1, 7, 0},
157
+ /* 18 */ { 7, s_5_18, 17, 6, 0},
158
+ /* 19 */ { 4, s_5_19, -1, 6, 0},
159
+ /* 20 */ { 4, s_5_20, -1, 7, 0},
160
+ /* 21 */ { 7, s_5_21, -1, 11, 0},
161
+ /* 22 */ { 7, s_5_22, -1, 9, 0},
162
+ /* 23 */ { 7, s_5_23, -1, 10, 0}
163
+ };
164
+
165
+ static const symbol s_6_0[5] = { 'i', 'c', 'a', 't', 'e' };
166
+ static const symbol s_6_1[5] = { 'a', 't', 'i', 'v', 'e' };
167
+ static const symbol s_6_2[5] = { 'a', 'l', 'i', 'z', 'e' };
168
+ static const symbol s_6_3[5] = { 'i', 'c', 'i', 't', 'i' };
169
+ static const symbol s_6_4[4] = { 'i', 'c', 'a', 'l' };
170
+ static const symbol s_6_5[6] = { 't', 'i', 'o', 'n', 'a', 'l' };
171
+ static const symbol s_6_6[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
172
+ static const symbol s_6_7[3] = { 'f', 'u', 'l' };
173
+ static const symbol s_6_8[4] = { 'n', 'e', 's', 's' };
174
+
175
+ static const struct among a_6[9] =
176
+ {
177
+ /* 0 */ { 5, s_6_0, -1, 4, 0},
178
+ /* 1 */ { 5, s_6_1, -1, 6, 0},
179
+ /* 2 */ { 5, s_6_2, -1, 3, 0},
180
+ /* 3 */ { 5, s_6_3, -1, 4, 0},
181
+ /* 4 */ { 4, s_6_4, -1, 4, 0},
182
+ /* 5 */ { 6, s_6_5, -1, 1, 0},
183
+ /* 6 */ { 7, s_6_6, 5, 2, 0},
184
+ /* 7 */ { 3, s_6_7, -1, 5, 0},
185
+ /* 8 */ { 4, s_6_8, -1, 5, 0}
186
+ };
187
+
188
+ static const symbol s_7_0[2] = { 'i', 'c' };
189
+ static const symbol s_7_1[4] = { 'a', 'n', 'c', 'e' };
190
+ static const symbol s_7_2[4] = { 'e', 'n', 'c', 'e' };
191
+ static const symbol s_7_3[4] = { 'a', 'b', 'l', 'e' };
192
+ static const symbol s_7_4[4] = { 'i', 'b', 'l', 'e' };
193
+ static const symbol s_7_5[3] = { 'a', 't', 'e' };
194
+ static const symbol s_7_6[3] = { 'i', 'v', 'e' };
195
+ static const symbol s_7_7[3] = { 'i', 'z', 'e' };
196
+ static const symbol s_7_8[3] = { 'i', 't', 'i' };
197
+ static const symbol s_7_9[2] = { 'a', 'l' };
198
+ static const symbol s_7_10[3] = { 'i', 's', 'm' };
199
+ static const symbol s_7_11[3] = { 'i', 'o', 'n' };
200
+ static const symbol s_7_12[2] = { 'e', 'r' };
201
+ static const symbol s_7_13[3] = { 'o', 'u', 's' };
202
+ static const symbol s_7_14[3] = { 'a', 'n', 't' };
203
+ static const symbol s_7_15[3] = { 'e', 'n', 't' };
204
+ static const symbol s_7_16[4] = { 'm', 'e', 'n', 't' };
205
+ static const symbol s_7_17[5] = { 'e', 'm', 'e', 'n', 't' };
206
+
207
+ static const struct among a_7[18] =
208
+ {
209
+ /* 0 */ { 2, s_7_0, -1, 1, 0},
210
+ /* 1 */ { 4, s_7_1, -1, 1, 0},
211
+ /* 2 */ { 4, s_7_2, -1, 1, 0},
212
+ /* 3 */ { 4, s_7_3, -1, 1, 0},
213
+ /* 4 */ { 4, s_7_4, -1, 1, 0},
214
+ /* 5 */ { 3, s_7_5, -1, 1, 0},
215
+ /* 6 */ { 3, s_7_6, -1, 1, 0},
216
+ /* 7 */ { 3, s_7_7, -1, 1, 0},
217
+ /* 8 */ { 3, s_7_8, -1, 1, 0},
218
+ /* 9 */ { 2, s_7_9, -1, 1, 0},
219
+ /* 10 */ { 3, s_7_10, -1, 1, 0},
220
+ /* 11 */ { 3, s_7_11, -1, 2, 0},
221
+ /* 12 */ { 2, s_7_12, -1, 1, 0},
222
+ /* 13 */ { 3, s_7_13, -1, 1, 0},
223
+ /* 14 */ { 3, s_7_14, -1, 1, 0},
224
+ /* 15 */ { 3, s_7_15, -1, 1, 0},
225
+ /* 16 */ { 4, s_7_16, 15, 1, 0},
226
+ /* 17 */ { 5, s_7_17, 16, 1, 0}
227
+ };
228
+
229
+ static const symbol s_8_0[1] = { 'e' };
230
+ static const symbol s_8_1[1] = { 'l' };
231
+
232
+ static const struct among a_8[2] =
233
+ {
234
+ /* 0 */ { 1, s_8_0, -1, 1, 0},
235
+ /* 1 */ { 1, s_8_1, -1, 2, 0}
236
+ };
237
+
238
+ static const symbol s_9_0[7] = { 's', 'u', 'c', 'c', 'e', 'e', 'd' };
239
+ static const symbol s_9_1[7] = { 'p', 'r', 'o', 'c', 'e', 'e', 'd' };
240
+ static const symbol s_9_2[6] = { 'e', 'x', 'c', 'e', 'e', 'd' };
241
+ static const symbol s_9_3[7] = { 'c', 'a', 'n', 'n', 'i', 'n', 'g' };
242
+ static const symbol s_9_4[6] = { 'i', 'n', 'n', 'i', 'n', 'g' };
243
+ static const symbol s_9_5[7] = { 'e', 'a', 'r', 'r', 'i', 'n', 'g' };
244
+ static const symbol s_9_6[7] = { 'h', 'e', 'r', 'r', 'i', 'n', 'g' };
245
+ static const symbol s_9_7[6] = { 'o', 'u', 't', 'i', 'n', 'g' };
246
+
247
+ static const struct among a_9[8] =
248
+ {
249
+ /* 0 */ { 7, s_9_0, -1, -1, 0},
250
+ /* 1 */ { 7, s_9_1, -1, -1, 0},
251
+ /* 2 */ { 6, s_9_2, -1, -1, 0},
252
+ /* 3 */ { 7, s_9_3, -1, -1, 0},
253
+ /* 4 */ { 6, s_9_4, -1, -1, 0},
254
+ /* 5 */ { 7, s_9_5, -1, -1, 0},
255
+ /* 6 */ { 7, s_9_6, -1, -1, 0},
256
+ /* 7 */ { 6, s_9_7, -1, -1, 0}
257
+ };
258
+
259
+ static const symbol s_10_0[5] = { 'a', 'n', 'd', 'e', 's' };
260
+ static const symbol s_10_1[5] = { 'a', 't', 'l', 'a', 's' };
261
+ static const symbol s_10_2[4] = { 'b', 'i', 'a', 's' };
262
+ static const symbol s_10_3[6] = { 'c', 'o', 's', 'm', 'o', 's' };
263
+ static const symbol s_10_4[5] = { 'd', 'y', 'i', 'n', 'g' };
264
+ static const symbol s_10_5[5] = { 'e', 'a', 'r', 'l', 'y' };
265
+ static const symbol s_10_6[6] = { 'g', 'e', 'n', 't', 'l', 'y' };
266
+ static const symbol s_10_7[4] = { 'h', 'o', 'w', 'e' };
267
+ static const symbol s_10_8[4] = { 'i', 'd', 'l', 'y' };
268
+ static const symbol s_10_9[5] = { 'l', 'y', 'i', 'n', 'g' };
269
+ static const symbol s_10_10[4] = { 'n', 'e', 'w', 's' };
270
+ static const symbol s_10_11[4] = { 'o', 'n', 'l', 'y' };
271
+ static const symbol s_10_12[6] = { 's', 'i', 'n', 'g', 'l', 'y' };
272
+ static const symbol s_10_13[5] = { 's', 'k', 'i', 'e', 's' };
273
+ static const symbol s_10_14[4] = { 's', 'k', 'i', 's' };
274
+ static const symbol s_10_15[3] = { 's', 'k', 'y' };
275
+ static const symbol s_10_16[5] = { 't', 'y', 'i', 'n', 'g' };
276
+ static const symbol s_10_17[4] = { 'u', 'g', 'l', 'y' };
277
+
278
+ static const struct among a_10[18] =
279
+ {
280
+ /* 0 */ { 5, s_10_0, -1, -1, 0},
281
+ /* 1 */ { 5, s_10_1, -1, -1, 0},
282
+ /* 2 */ { 4, s_10_2, -1, -1, 0},
283
+ /* 3 */ { 6, s_10_3, -1, -1, 0},
284
+ /* 4 */ { 5, s_10_4, -1, 3, 0},
285
+ /* 5 */ { 5, s_10_5, -1, 9, 0},
286
+ /* 6 */ { 6, s_10_6, -1, 7, 0},
287
+ /* 7 */ { 4, s_10_7, -1, -1, 0},
288
+ /* 8 */ { 4, s_10_8, -1, 6, 0},
289
+ /* 9 */ { 5, s_10_9, -1, 4, 0},
290
+ /* 10 */ { 4, s_10_10, -1, -1, 0},
291
+ /* 11 */ { 4, s_10_11, -1, 10, 0},
292
+ /* 12 */ { 6, s_10_12, -1, 11, 0},
293
+ /* 13 */ { 5, s_10_13, -1, 2, 0},
294
+ /* 14 */ { 4, s_10_14, -1, 1, 0},
295
+ /* 15 */ { 3, s_10_15, -1, -1, 0},
296
+ /* 16 */ { 5, s_10_16, -1, 5, 0},
297
+ /* 17 */ { 4, s_10_17, -1, 8, 0}
298
+ };
299
+
300
+ static const unsigned char g_v[] = { 17, 65, 16, 1 };
301
+
302
+ static const unsigned char g_v_WXY[] = { 1, 17, 65, 208, 1 };
303
+
304
+ static const unsigned char g_valid_LI[] = { 55, 141, 2 };
305
+
306
+ static const symbol s_0[] = { '\'' };
307
+ static const symbol s_1[] = { 'y' };
308
+ static const symbol s_2[] = { 'Y' };
309
+ static const symbol s_3[] = { 'y' };
310
+ static const symbol s_4[] = { 'Y' };
311
+ static const symbol s_5[] = { 's', 's' };
312
+ static const symbol s_6[] = { 'i' };
313
+ static const symbol s_7[] = { 'i', 'e' };
314
+ static const symbol s_8[] = { 'e', 'e' };
315
+ static const symbol s_9[] = { 'e' };
316
+ static const symbol s_10[] = { 'e' };
317
+ static const symbol s_11[] = { 'y' };
318
+ static const symbol s_12[] = { 'Y' };
319
+ static const symbol s_13[] = { 'i' };
320
+ static const symbol s_14[] = { 't', 'i', 'o', 'n' };
321
+ static const symbol s_15[] = { 'e', 'n', 'c', 'e' };
322
+ static const symbol s_16[] = { 'a', 'n', 'c', 'e' };
323
+ static const symbol s_17[] = { 'a', 'b', 'l', 'e' };
324
+ static const symbol s_18[] = { 'e', 'n', 't' };
325
+ static const symbol s_19[] = { 'i', 'z', 'e' };
326
+ static const symbol s_20[] = { 'a', 't', 'e' };
327
+ static const symbol s_21[] = { 'a', 'l' };
328
+ static const symbol s_22[] = { 'f', 'u', 'l' };
329
+ static const symbol s_23[] = { 'o', 'u', 's' };
330
+ static const symbol s_24[] = { 'i', 'v', 'e' };
331
+ static const symbol s_25[] = { 'b', 'l', 'e' };
332
+ static const symbol s_26[] = { 'l' };
333
+ static const symbol s_27[] = { 'o', 'g' };
334
+ static const symbol s_28[] = { 'f', 'u', 'l' };
335
+ static const symbol s_29[] = { 'l', 'e', 's', 's' };
336
+ static const symbol s_30[] = { 't', 'i', 'o', 'n' };
337
+ static const symbol s_31[] = { 'a', 't', 'e' };
338
+ static const symbol s_32[] = { 'a', 'l' };
339
+ static const symbol s_33[] = { 'i', 'c' };
340
+ static const symbol s_34[] = { 's' };
341
+ static const symbol s_35[] = { 't' };
342
+ static const symbol s_36[] = { 'l' };
343
+ static const symbol s_37[] = { 's', 'k', 'i' };
344
+ static const symbol s_38[] = { 's', 'k', 'y' };
345
+ static const symbol s_39[] = { 'd', 'i', 'e' };
346
+ static const symbol s_40[] = { 'l', 'i', 'e' };
347
+ static const symbol s_41[] = { 't', 'i', 'e' };
348
+ static const symbol s_42[] = { 'i', 'd', 'l' };
349
+ static const symbol s_43[] = { 'g', 'e', 'n', 't', 'l' };
350
+ static const symbol s_44[] = { 'u', 'g', 'l', 'i' };
351
+ static const symbol s_45[] = { 'e', 'a', 'r', 'l', 'i' };
352
+ static const symbol s_46[] = { 'o', 'n', 'l', 'i' };
353
+ static const symbol s_47[] = { 's', 'i', 'n', 'g', 'l' };
354
+ static const symbol s_48[] = { 'Y' };
355
+ static const symbol s_49[] = { 'y' };
356
+
357
+ static int r_prelude(struct SN_env * z) {
358
+ z->B[0] = 0; /* unset Y_found, line 26 */
359
+ { int c1 = z->c; /* do, line 27 */
360
+ z->bra = z->c; /* [, line 27 */
361
+ if (!(eq_s(z, 1, s_0))) goto lab0;
362
+ z->ket = z->c; /* ], line 27 */
363
+ { int ret = slice_del(z); /* delete, line 27 */
364
+ if (ret < 0) return ret;
365
+ }
366
+ lab0:
367
+ z->c = c1;
368
+ }
369
+ { int c2 = z->c; /* do, line 28 */
370
+ z->bra = z->c; /* [, line 28 */
371
+ if (!(eq_s(z, 1, s_1))) goto lab1;
372
+ z->ket = z->c; /* ], line 28 */
373
+ { int ret = slice_from_s(z, 1, s_2); /* <-, line 28 */
374
+ if (ret < 0) return ret;
375
+ }
376
+ z->B[0] = 1; /* set Y_found, line 28 */
377
+ lab1:
378
+ z->c = c2;
379
+ }
380
+ { int c3 = z->c; /* do, line 29 */
381
+ while(1) { /* repeat, line 29 */
382
+ int c4 = z->c;
383
+ while(1) { /* goto, line 29 */
384
+ int c5 = z->c;
385
+ if (in_grouping_U(z, g_v, 97, 121, 0)) goto lab4;
386
+ z->bra = z->c; /* [, line 29 */
387
+ if (!(eq_s(z, 1, s_3))) goto lab4;
388
+ z->ket = z->c; /* ], line 29 */
389
+ z->c = c5;
390
+ break;
391
+ lab4:
392
+ z->c = c5;
393
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
394
+ if (ret < 0) goto lab3;
395
+ z->c = ret; /* goto, line 29 */
396
+ }
397
+ }
398
+ { int ret = slice_from_s(z, 1, s_4); /* <-, line 29 */
399
+ if (ret < 0) return ret;
400
+ }
401
+ z->B[0] = 1; /* set Y_found, line 29 */
402
+ continue;
403
+ lab3:
404
+ z->c = c4;
405
+ break;
406
+ }
407
+ z->c = c3;
408
+ }
409
+ return 1;
410
+ }
411
+
412
+ static int r_mark_regions(struct SN_env * z) {
413
+ z->I[0] = z->l;
414
+ z->I[1] = z->l;
415
+ { int c1 = z->c; /* do, line 35 */
416
+ { int c2 = z->c; /* or, line 41 */
417
+ if (z->c + 4 >= z->l || z->p[z->c + 4] >> 5 != 3 || !((2375680 >> (z->p[z->c + 4] & 0x1f)) & 1)) goto lab2;
418
+ if (!(find_among(z, a_0, 3))) goto lab2; /* among, line 36 */
419
+ goto lab1;
420
+ lab2:
421
+ z->c = c2;
422
+ { /* gopast */ /* grouping v, line 41 */
423
+ int ret = out_grouping_U(z, g_v, 97, 121, 1);
424
+ if (ret < 0) goto lab0;
425
+ z->c += ret;
426
+ }
427
+ { /* gopast */ /* non v, line 41 */
428
+ int ret = in_grouping_U(z, g_v, 97, 121, 1);
429
+ if (ret < 0) goto lab0;
430
+ z->c += ret;
431
+ }
432
+ }
433
+ lab1:
434
+ z->I[0] = z->c; /* setmark p1, line 42 */
435
+ { /* gopast */ /* grouping v, line 43 */
436
+ int ret = out_grouping_U(z, g_v, 97, 121, 1);
437
+ if (ret < 0) goto lab0;
438
+ z->c += ret;
439
+ }
440
+ { /* gopast */ /* non v, line 43 */
441
+ int ret = in_grouping_U(z, g_v, 97, 121, 1);
442
+ if (ret < 0) goto lab0;
443
+ z->c += ret;
444
+ }
445
+ z->I[1] = z->c; /* setmark p2, line 43 */
446
+ lab0:
447
+ z->c = c1;
448
+ }
449
+ return 1;
450
+ }
451
+
452
+ static int r_shortv(struct SN_env * z) {
453
+ { int m1 = z->l - z->c; (void)m1; /* or, line 51 */
454
+ if (out_grouping_b_U(z, g_v_WXY, 89, 121, 0)) goto lab1;
455
+ if (in_grouping_b_U(z, g_v, 97, 121, 0)) goto lab1;
456
+ if (out_grouping_b_U(z, g_v, 97, 121, 0)) goto lab1;
457
+ goto lab0;
458
+ lab1:
459
+ z->c = z->l - m1;
460
+ if (out_grouping_b_U(z, g_v, 97, 121, 0)) return 0;
461
+ if (in_grouping_b_U(z, g_v, 97, 121, 0)) return 0;
462
+ if (z->c > z->lb) return 0; /* atlimit, line 52 */
463
+ }
464
+ lab0:
465
+ return 1;
466
+ }
467
+
468
+ static int r_R1(struct SN_env * z) {
469
+ if (!(z->I[0] <= z->c)) return 0;
470
+ return 1;
471
+ }
472
+
473
+ static int r_R2(struct SN_env * z) {
474
+ if (!(z->I[1] <= z->c)) return 0;
475
+ return 1;
476
+ }
477
+
478
+ static int r_Step_1a(struct SN_env * z) {
479
+ int among_var;
480
+ { int m_keep = z->l - z->c;/* (void) m_keep;*/ /* try, line 59 */
481
+ z->ket = z->c; /* [, line 60 */
482
+ if (z->c <= z->lb || (z->p[z->c - 1] != 39 && z->p[z->c - 1] != 115)) { z->c = z->l - m_keep; goto lab0; }
483
+ among_var = find_among_b(z, a_1, 3); /* substring, line 60 */
484
+ if (!(among_var)) { z->c = z->l - m_keep; goto lab0; }
485
+ z->bra = z->c; /* ], line 60 */
486
+ switch(among_var) {
487
+ case 0: { z->c = z->l - m_keep; goto lab0; }
488
+ case 1:
489
+ { int ret = slice_del(z); /* delete, line 62 */
490
+ if (ret < 0) return ret;
491
+ }
492
+ break;
493
+ }
494
+ lab0:
495
+ ;
496
+ }
497
+ z->ket = z->c; /* [, line 65 */
498
+ if (z->c <= z->lb || (z->p[z->c - 1] != 100 && z->p[z->c - 1] != 115)) return 0;
499
+ among_var = find_among_b(z, a_2, 6); /* substring, line 65 */
500
+ if (!(among_var)) return 0;
501
+ z->bra = z->c; /* ], line 65 */
502
+ switch(among_var) {
503
+ case 0: return 0;
504
+ case 1:
505
+ { int ret = slice_from_s(z, 2, s_5); /* <-, line 66 */
506
+ if (ret < 0) return ret;
507
+ }
508
+ break;
509
+ case 2:
510
+ { int m1 = z->l - z->c; (void)m1; /* or, line 68 */
511
+ { int ret = skip_utf8(z->p, z->c, z->lb, z->l, - 2);
512
+ if (ret < 0) goto lab2;
513
+ z->c = ret; /* hop, line 68 */
514
+ }
515
+ { int ret = slice_from_s(z, 1, s_6); /* <-, line 68 */
516
+ if (ret < 0) return ret;
517
+ }
518
+ goto lab1;
519
+ lab2:
520
+ z->c = z->l - m1;
521
+ { int ret = slice_from_s(z, 2, s_7); /* <-, line 68 */
522
+ if (ret < 0) return ret;
523
+ }
524
+ }
525
+ lab1:
526
+ break;
527
+ case 3:
528
+ { int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
529
+ if (ret < 0) return 0;
530
+ z->c = ret; /* next, line 69 */
531
+ }
532
+ { /* gopast */ /* grouping v, line 69 */
533
+ int ret = out_grouping_b_U(z, g_v, 97, 121, 1);
534
+ if (ret < 0) return 0;
535
+ z->c -= ret;
536
+ }
537
+ { int ret = slice_del(z); /* delete, line 69 */
538
+ if (ret < 0) return ret;
539
+ }
540
+ break;
541
+ }
542
+ return 1;
543
+ }
544
+
545
+ static int r_Step_1b(struct SN_env * z) {
546
+ int among_var;
547
+ z->ket = z->c; /* [, line 75 */
548
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((33554576 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
549
+ among_var = find_among_b(z, a_4, 6); /* substring, line 75 */
550
+ if (!(among_var)) return 0;
551
+ z->bra = z->c; /* ], line 75 */
552
+ switch(among_var) {
553
+ case 0: return 0;
554
+ case 1:
555
+ { int ret = r_R1(z);
556
+ if (ret == 0) return 0; /* call R1, line 77 */
557
+ if (ret < 0) return ret;
558
+ }
559
+ { int ret = slice_from_s(z, 2, s_8); /* <-, line 77 */
560
+ if (ret < 0) return ret;
561
+ }
562
+ break;
563
+ case 2:
564
+ { int m_test = z->l - z->c; /* test, line 80 */
565
+ { /* gopast */ /* grouping v, line 80 */
566
+ int ret = out_grouping_b_U(z, g_v, 97, 121, 1);
567
+ if (ret < 0) return 0;
568
+ z->c -= ret;
569
+ }
570
+ z->c = z->l - m_test;
571
+ }
572
+ { int ret = slice_del(z); /* delete, line 80 */
573
+ if (ret < 0) return ret;
574
+ }
575
+ { int m_test = z->l - z->c; /* test, line 81 */
576
+ 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
577
+ among_var = find_among_b(z, a_3, 13); /* substring, line 81 */
578
+ if (!(among_var)) return 0;
579
+ z->c = z->l - m_test;
580
+ }
581
+ switch(among_var) {
582
+ case 0: return 0;
583
+ case 1:
584
+ { int c_keep = z->c;
585
+ int ret = insert_s(z, z->c, z->c, 1, s_9); /* <+, line 83 */
586
+ z->c = c_keep;
587
+ if (ret < 0) return ret;
588
+ }
589
+ break;
590
+ case 2:
591
+ z->ket = z->c; /* [, line 86 */
592
+ { int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
593
+ if (ret < 0) return 0;
594
+ z->c = ret; /* next, line 86 */
595
+ }
596
+ z->bra = z->c; /* ], line 86 */
597
+ { int ret = slice_del(z); /* delete, line 86 */
598
+ if (ret < 0) return ret;
599
+ }
600
+ break;
601
+ case 3:
602
+ if (z->c != z->I[0]) return 0; /* atmark, line 87 */
603
+ { int m_test = z->l - z->c; /* test, line 87 */
604
+ { int ret = r_shortv(z);
605
+ if (ret == 0) return 0; /* call shortv, line 87 */
606
+ if (ret < 0) return ret;
607
+ }
608
+ z->c = z->l - m_test;
609
+ }
610
+ { int c_keep = z->c;
611
+ int ret = insert_s(z, z->c, z->c, 1, s_10); /* <+, line 87 */
612
+ z->c = c_keep;
613
+ if (ret < 0) return ret;
614
+ }
615
+ break;
616
+ }
617
+ break;
618
+ }
619
+ return 1;
620
+ }
621
+
622
+ static int r_Step_1c(struct SN_env * z) {
623
+ z->ket = z->c; /* [, line 94 */
624
+ { int m1 = z->l - z->c; (void)m1; /* or, line 94 */
625
+ if (!(eq_s_b(z, 1, s_11))) goto lab1;
626
+ goto lab0;
627
+ lab1:
628
+ z->c = z->l - m1;
629
+ if (!(eq_s_b(z, 1, s_12))) return 0;
630
+ }
631
+ lab0:
632
+ z->bra = z->c; /* ], line 94 */
633
+ if (out_grouping_b_U(z, g_v, 97, 121, 0)) return 0;
634
+ { int m2 = z->l - z->c; (void)m2; /* not, line 95 */
635
+ if (z->c > z->lb) goto lab2; /* atlimit, line 95 */
636
+ return 0;
637
+ lab2:
638
+ z->c = z->l - m2;
639
+ }
640
+ { int ret = slice_from_s(z, 1, s_13); /* <-, line 96 */
641
+ if (ret < 0) return ret;
642
+ }
643
+ return 1;
644
+ }
645
+
646
+ static int r_Step_2(struct SN_env * z) {
647
+ int among_var;
648
+ z->ket = z->c; /* [, line 100 */
649
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((815616 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
650
+ among_var = find_among_b(z, a_5, 24); /* substring, line 100 */
651
+ if (!(among_var)) return 0;
652
+ z->bra = z->c; /* ], line 100 */
653
+ { int ret = r_R1(z);
654
+ if (ret == 0) return 0; /* call R1, line 100 */
655
+ if (ret < 0) return ret;
656
+ }
657
+ switch(among_var) {
658
+ case 0: return 0;
659
+ case 1:
660
+ { int ret = slice_from_s(z, 4, s_14); /* <-, line 101 */
661
+ if (ret < 0) return ret;
662
+ }
663
+ break;
664
+ case 2:
665
+ { int ret = slice_from_s(z, 4, s_15); /* <-, line 102 */
666
+ if (ret < 0) return ret;
667
+ }
668
+ break;
669
+ case 3:
670
+ { int ret = slice_from_s(z, 4, s_16); /* <-, line 103 */
671
+ if (ret < 0) return ret;
672
+ }
673
+ break;
674
+ case 4:
675
+ { int ret = slice_from_s(z, 4, s_17); /* <-, line 104 */
676
+ if (ret < 0) return ret;
677
+ }
678
+ break;
679
+ case 5:
680
+ { int ret = slice_from_s(z, 3, s_18); /* <-, line 105 */
681
+ if (ret < 0) return ret;
682
+ }
683
+ break;
684
+ case 6:
685
+ { int ret = slice_from_s(z, 3, s_19); /* <-, line 107 */
686
+ if (ret < 0) return ret;
687
+ }
688
+ break;
689
+ case 7:
690
+ { int ret = slice_from_s(z, 3, s_20); /* <-, line 109 */
691
+ if (ret < 0) return ret;
692
+ }
693
+ break;
694
+ case 8:
695
+ { int ret = slice_from_s(z, 2, s_21); /* <-, line 111 */
696
+ if (ret < 0) return ret;
697
+ }
698
+ break;
699
+ case 9:
700
+ { int ret = slice_from_s(z, 3, s_22); /* <-, line 112 */
701
+ if (ret < 0) return ret;
702
+ }
703
+ break;
704
+ case 10:
705
+ { int ret = slice_from_s(z, 3, s_23); /* <-, line 114 */
706
+ if (ret < 0) return ret;
707
+ }
708
+ break;
709
+ case 11:
710
+ { int ret = slice_from_s(z, 3, s_24); /* <-, line 116 */
711
+ if (ret < 0) return ret;
712
+ }
713
+ break;
714
+ case 12:
715
+ { int ret = slice_from_s(z, 3, s_25); /* <-, line 118 */
716
+ if (ret < 0) return ret;
717
+ }
718
+ break;
719
+ case 13:
720
+ if (!(eq_s_b(z, 1, s_26))) return 0;
721
+ { int ret = slice_from_s(z, 2, s_27); /* <-, line 119 */
722
+ if (ret < 0) return ret;
723
+ }
724
+ break;
725
+ case 14:
726
+ { int ret = slice_from_s(z, 3, s_28); /* <-, line 120 */
727
+ if (ret < 0) return ret;
728
+ }
729
+ break;
730
+ case 15:
731
+ { int ret = slice_from_s(z, 4, s_29); /* <-, line 121 */
732
+ if (ret < 0) return ret;
733
+ }
734
+ break;
735
+ case 16:
736
+ if (in_grouping_b_U(z, g_valid_LI, 99, 116, 0)) return 0;
737
+ { int ret = slice_del(z); /* delete, line 122 */
738
+ if (ret < 0) return ret;
739
+ }
740
+ break;
741
+ }
742
+ return 1;
743
+ }
744
+
745
+ static int r_Step_3(struct SN_env * z) {
746
+ int among_var;
747
+ z->ket = z->c; /* [, line 127 */
748
+ if (z->c - 2 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((528928 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
749
+ among_var = find_among_b(z, a_6, 9); /* substring, line 127 */
750
+ if (!(among_var)) return 0;
751
+ z->bra = z->c; /* ], line 127 */
752
+ { int ret = r_R1(z);
753
+ if (ret == 0) return 0; /* call R1, line 127 */
754
+ if (ret < 0) return ret;
755
+ }
756
+ switch(among_var) {
757
+ case 0: return 0;
758
+ case 1:
759
+ { int ret = slice_from_s(z, 4, s_30); /* <-, line 128 */
760
+ if (ret < 0) return ret;
761
+ }
762
+ break;
763
+ case 2:
764
+ { int ret = slice_from_s(z, 3, s_31); /* <-, line 129 */
765
+ if (ret < 0) return ret;
766
+ }
767
+ break;
768
+ case 3:
769
+ { int ret = slice_from_s(z, 2, s_32); /* <-, line 130 */
770
+ if (ret < 0) return ret;
771
+ }
772
+ break;
773
+ case 4:
774
+ { int ret = slice_from_s(z, 2, s_33); /* <-, line 132 */
775
+ if (ret < 0) return ret;
776
+ }
777
+ break;
778
+ case 5:
779
+ { int ret = slice_del(z); /* delete, line 134 */
780
+ if (ret < 0) return ret;
781
+ }
782
+ break;
783
+ case 6:
784
+ { int ret = r_R2(z);
785
+ if (ret == 0) return 0; /* call R2, line 136 */
786
+ if (ret < 0) return ret;
787
+ }
788
+ { int ret = slice_del(z); /* delete, line 136 */
789
+ if (ret < 0) return ret;
790
+ }
791
+ break;
792
+ }
793
+ return 1;
794
+ }
795
+
796
+ static int r_Step_4(struct SN_env * z) {
797
+ int among_var;
798
+ z->ket = z->c; /* [, line 141 */
799
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1864232 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
800
+ among_var = find_among_b(z, a_7, 18); /* substring, line 141 */
801
+ if (!(among_var)) return 0;
802
+ z->bra = z->c; /* ], line 141 */
803
+ { int ret = r_R2(z);
804
+ if (ret == 0) return 0; /* call R2, line 141 */
805
+ if (ret < 0) return ret;
806
+ }
807
+ switch(among_var) {
808
+ case 0: return 0;
809
+ case 1:
810
+ { int ret = slice_del(z); /* delete, line 144 */
811
+ if (ret < 0) return ret;
812
+ }
813
+ break;
814
+ case 2:
815
+ { int m1 = z->l - z->c; (void)m1; /* or, line 145 */
816
+ if (!(eq_s_b(z, 1, s_34))) goto lab1;
817
+ goto lab0;
818
+ lab1:
819
+ z->c = z->l - m1;
820
+ if (!(eq_s_b(z, 1, s_35))) return 0;
821
+ }
822
+ lab0:
823
+ { int ret = slice_del(z); /* delete, line 145 */
824
+ if (ret < 0) return ret;
825
+ }
826
+ break;
827
+ }
828
+ return 1;
829
+ }
830
+
831
+ static int r_Step_5(struct SN_env * z) {
832
+ int among_var;
833
+ z->ket = z->c; /* [, line 150 */
834
+ if (z->c <= z->lb || (z->p[z->c - 1] != 101 && z->p[z->c - 1] != 108)) return 0;
835
+ among_var = find_among_b(z, a_8, 2); /* substring, line 150 */
836
+ if (!(among_var)) return 0;
837
+ z->bra = z->c; /* ], line 150 */
838
+ switch(among_var) {
839
+ case 0: return 0;
840
+ case 1:
841
+ { int m1 = z->l - z->c; (void)m1; /* or, line 151 */
842
+ { int ret = r_R2(z);
843
+ if (ret == 0) goto lab1; /* call R2, line 151 */
844
+ if (ret < 0) return ret;
845
+ }
846
+ goto lab0;
847
+ lab1:
848
+ z->c = z->l - m1;
849
+ { int ret = r_R1(z);
850
+ if (ret == 0) return 0; /* call R1, line 151 */
851
+ if (ret < 0) return ret;
852
+ }
853
+ { int m2 = z->l - z->c; (void)m2; /* not, line 151 */
854
+ { int ret = r_shortv(z);
855
+ if (ret == 0) goto lab2; /* call shortv, line 151 */
856
+ if (ret < 0) return ret;
857
+ }
858
+ return 0;
859
+ lab2:
860
+ z->c = z->l - m2;
861
+ }
862
+ }
863
+ lab0:
864
+ { int ret = slice_del(z); /* delete, line 151 */
865
+ if (ret < 0) return ret;
866
+ }
867
+ break;
868
+ case 2:
869
+ { int ret = r_R2(z);
870
+ if (ret == 0) return 0; /* call R2, line 152 */
871
+ if (ret < 0) return ret;
872
+ }
873
+ if (!(eq_s_b(z, 1, s_36))) return 0;
874
+ { int ret = slice_del(z); /* delete, line 152 */
875
+ if (ret < 0) return ret;
876
+ }
877
+ break;
878
+ }
879
+ return 1;
880
+ }
881
+
882
+ static int r_exception2(struct SN_env * z) {
883
+ z->ket = z->c; /* [, line 158 */
884
+ if (z->c - 5 <= z->lb || (z->p[z->c - 1] != 100 && z->p[z->c - 1] != 103)) return 0;
885
+ if (!(find_among_b(z, a_9, 8))) return 0; /* substring, line 158 */
886
+ z->bra = z->c; /* ], line 158 */
887
+ if (z->c > z->lb) return 0; /* atlimit, line 158 */
888
+ return 1;
889
+ }
890
+
891
+ static int r_exception1(struct SN_env * z) {
892
+ int among_var;
893
+ z->bra = z->c; /* [, line 170 */
894
+ if (z->c + 2 >= z->l || z->p[z->c + 2] >> 5 != 3 || !((42750482 >> (z->p[z->c + 2] & 0x1f)) & 1)) return 0;
895
+ among_var = find_among(z, a_10, 18); /* substring, line 170 */
896
+ if (!(among_var)) return 0;
897
+ z->ket = z->c; /* ], line 170 */
898
+ if (z->c < z->l) return 0; /* atlimit, line 170 */
899
+ switch(among_var) {
900
+ case 0: return 0;
901
+ case 1:
902
+ { int ret = slice_from_s(z, 3, s_37); /* <-, line 174 */
903
+ if (ret < 0) return ret;
904
+ }
905
+ break;
906
+ case 2:
907
+ { int ret = slice_from_s(z, 3, s_38); /* <-, line 175 */
908
+ if (ret < 0) return ret;
909
+ }
910
+ break;
911
+ case 3:
912
+ { int ret = slice_from_s(z, 3, s_39); /* <-, line 176 */
913
+ if (ret < 0) return ret;
914
+ }
915
+ break;
916
+ case 4:
917
+ { int ret = slice_from_s(z, 3, s_40); /* <-, line 177 */
918
+ if (ret < 0) return ret;
919
+ }
920
+ break;
921
+ case 5:
922
+ { int ret = slice_from_s(z, 3, s_41); /* <-, line 178 */
923
+ if (ret < 0) return ret;
924
+ }
925
+ break;
926
+ case 6:
927
+ { int ret = slice_from_s(z, 3, s_42); /* <-, line 182 */
928
+ if (ret < 0) return ret;
929
+ }
930
+ break;
931
+ case 7:
932
+ { int ret = slice_from_s(z, 5, s_43); /* <-, line 183 */
933
+ if (ret < 0) return ret;
934
+ }
935
+ break;
936
+ case 8:
937
+ { int ret = slice_from_s(z, 4, s_44); /* <-, line 184 */
938
+ if (ret < 0) return ret;
939
+ }
940
+ break;
941
+ case 9:
942
+ { int ret = slice_from_s(z, 5, s_45); /* <-, line 185 */
943
+ if (ret < 0) return ret;
944
+ }
945
+ break;
946
+ case 10:
947
+ { int ret = slice_from_s(z, 4, s_46); /* <-, line 186 */
948
+ if (ret < 0) return ret;
949
+ }
950
+ break;
951
+ case 11:
952
+ { int ret = slice_from_s(z, 5, s_47); /* <-, line 187 */
953
+ if (ret < 0) return ret;
954
+ }
955
+ break;
956
+ }
957
+ return 1;
958
+ }
959
+
960
+ static int r_postlude(struct SN_env * z) {
961
+ if (!(z->B[0])) return 0; /* Boolean test Y_found, line 203 */
962
+ while(1) { /* repeat, line 203 */
963
+ int c1 = z->c;
964
+ while(1) { /* goto, line 203 */
965
+ int c2 = z->c;
966
+ z->bra = z->c; /* [, line 203 */
967
+ if (!(eq_s(z, 1, s_48))) goto lab1;
968
+ z->ket = z->c; /* ], line 203 */
969
+ z->c = c2;
970
+ break;
971
+ lab1:
972
+ z->c = c2;
973
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
974
+ if (ret < 0) goto lab0;
975
+ z->c = ret; /* goto, line 203 */
976
+ }
977
+ }
978
+ { int ret = slice_from_s(z, 1, s_49); /* <-, line 203 */
979
+ if (ret < 0) return ret;
980
+ }
981
+ continue;
982
+ lab0:
983
+ z->c = c1;
984
+ break;
985
+ }
986
+ return 1;
987
+ }
988
+
989
+ extern int english_UTF_8_stem(struct SN_env * z) {
990
+ { int c1 = z->c; /* or, line 207 */
991
+ { int ret = r_exception1(z);
992
+ if (ret == 0) goto lab1; /* call exception1, line 207 */
993
+ if (ret < 0) return ret;
994
+ }
995
+ goto lab0;
996
+ lab1:
997
+ z->c = c1;
998
+ { int c2 = z->c; /* not, line 208 */
999
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, + 3);
1000
+ if (ret < 0) goto lab3;
1001
+ z->c = ret; /* hop, line 208 */
1002
+ }
1003
+ goto lab2;
1004
+ lab3:
1005
+ z->c = c2;
1006
+ }
1007
+ goto lab0;
1008
+ lab2:
1009
+ z->c = c1;
1010
+ { int c3 = z->c; /* do, line 209 */
1011
+ { int ret = r_prelude(z);
1012
+ if (ret == 0) goto lab4; /* call prelude, line 209 */
1013
+ if (ret < 0) return ret;
1014
+ }
1015
+ lab4:
1016
+ z->c = c3;
1017
+ }
1018
+ { int c4 = z->c; /* do, line 210 */
1019
+ { int ret = r_mark_regions(z);
1020
+ if (ret == 0) goto lab5; /* call mark_regions, line 210 */
1021
+ if (ret < 0) return ret;
1022
+ }
1023
+ lab5:
1024
+ z->c = c4;
1025
+ }
1026
+ z->lb = z->c; z->c = z->l; /* backwards, line 211 */
1027
+
1028
+ { int m5 = z->l - z->c; (void)m5; /* do, line 213 */
1029
+ { int ret = r_Step_1a(z);
1030
+ if (ret == 0) goto lab6; /* call Step_1a, line 213 */
1031
+ if (ret < 0) return ret;
1032
+ }
1033
+ lab6:
1034
+ z->c = z->l - m5;
1035
+ }
1036
+ { int m6 = z->l - z->c; (void)m6; /* or, line 215 */
1037
+ { int ret = r_exception2(z);
1038
+ if (ret == 0) goto lab8; /* call exception2, line 215 */
1039
+ if (ret < 0) return ret;
1040
+ }
1041
+ goto lab7;
1042
+ lab8:
1043
+ z->c = z->l - m6;
1044
+ { int m7 = z->l - z->c; (void)m7; /* do, line 217 */
1045
+ { int ret = r_Step_1b(z);
1046
+ if (ret == 0) goto lab9; /* call Step_1b, line 217 */
1047
+ if (ret < 0) return ret;
1048
+ }
1049
+ lab9:
1050
+ z->c = z->l - m7;
1051
+ }
1052
+ { int m8 = z->l - z->c; (void)m8; /* do, line 218 */
1053
+ { int ret = r_Step_1c(z);
1054
+ if (ret == 0) goto lab10; /* call Step_1c, line 218 */
1055
+ if (ret < 0) return ret;
1056
+ }
1057
+ lab10:
1058
+ z->c = z->l - m8;
1059
+ }
1060
+ { int m9 = z->l - z->c; (void)m9; /* do, line 220 */
1061
+ { int ret = r_Step_2(z);
1062
+ if (ret == 0) goto lab11; /* call Step_2, line 220 */
1063
+ if (ret < 0) return ret;
1064
+ }
1065
+ lab11:
1066
+ z->c = z->l - m9;
1067
+ }
1068
+ { int m10 = z->l - z->c; (void)m10; /* do, line 221 */
1069
+ { int ret = r_Step_3(z);
1070
+ if (ret == 0) goto lab12; /* call Step_3, line 221 */
1071
+ if (ret < 0) return ret;
1072
+ }
1073
+ lab12:
1074
+ z->c = z->l - m10;
1075
+ }
1076
+ { int m11 = z->l - z->c; (void)m11; /* do, line 222 */
1077
+ { int ret = r_Step_4(z);
1078
+ if (ret == 0) goto lab13; /* call Step_4, line 222 */
1079
+ if (ret < 0) return ret;
1080
+ }
1081
+ lab13:
1082
+ z->c = z->l - m11;
1083
+ }
1084
+ { int m12 = z->l - z->c; (void)m12; /* do, line 224 */
1085
+ { int ret = r_Step_5(z);
1086
+ if (ret == 0) goto lab14; /* call Step_5, line 224 */
1087
+ if (ret < 0) return ret;
1088
+ }
1089
+ lab14:
1090
+ z->c = z->l - m12;
1091
+ }
1092
+ }
1093
+ lab7:
1094
+ z->c = z->lb;
1095
+ { int c13 = z->c; /* do, line 227 */
1096
+ { int ret = r_postlude(z);
1097
+ if (ret == 0) goto lab15; /* call postlude, line 227 */
1098
+ if (ret < 0) return ret;
1099
+ }
1100
+ lab15:
1101
+ z->c = c13;
1102
+ }
1103
+ }
1104
+ lab0:
1105
+ return 1;
1106
+ }
1107
+
1108
+ extern struct SN_env * english_UTF_8_create_env(void) { return SN_create_env(0, 2, 1); }
1109
+
1110
+ extern void english_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1111
+