-
Notifications
You must be signed in to change notification settings - Fork 5
/
stem_UTF_8_turkish.c
2205 lines (2096 loc) · 79 KB
/
stem_UTF_8_turkish.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* This file was generated automatically by the Snowball to ANSI C compiler */
#include "include/header.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int turkish_UTF_8_stem(struct SN_env * z);
#ifdef __cplusplus
}
#endif
static int r_stem_suffix_chain_before_ki(struct SN_env * z);
static int r_stem_noun_suffixes(struct SN_env * z);
static int r_stem_nominal_verb_suffixes(struct SN_env * z);
static int r_postlude(struct SN_env * z);
static int r_post_process_last_consonants(struct SN_env * z);
static int r_more_than_one_syllable_word(struct SN_env * z);
static int r_mark_suffix_with_optional_s_consonant(struct SN_env * z);
static int r_mark_suffix_with_optional_n_consonant(struct SN_env * z);
static int r_mark_suffix_with_optional_U_vowel(struct SN_env * z);
static int r_mark_suffix_with_optional_y_consonant(struct SN_env * z);
static int r_mark_ysA(struct SN_env * z);
static int r_mark_ymUs_(struct SN_env * z);
static int r_mark_yken(struct SN_env * z);
static int r_mark_yDU(struct SN_env * z);
static int r_mark_yUz(struct SN_env * z);
static int r_mark_yUm(struct SN_env * z);
static int r_mark_yU(struct SN_env * z);
static int r_mark_ylA(struct SN_env * z);
static int r_mark_yA(struct SN_env * z);
static int r_mark_possessives(struct SN_env * z);
static int r_mark_sUnUz(struct SN_env * z);
static int r_mark_sUn(struct SN_env * z);
static int r_mark_sU(struct SN_env * z);
static int r_mark_nUz(struct SN_env * z);
static int r_mark_nUn(struct SN_env * z);
static int r_mark_nU(struct SN_env * z);
static int r_mark_ndAn(struct SN_env * z);
static int r_mark_ndA(struct SN_env * z);
static int r_mark_ncA(struct SN_env * z);
static int r_mark_nA(struct SN_env * z);
static int r_mark_lArI(struct SN_env * z);
static int r_mark_lAr(struct SN_env * z);
static int r_mark_ki(struct SN_env * z);
static int r_mark_DUr(struct SN_env * z);
static int r_mark_DAn(struct SN_env * z);
static int r_mark_DA(struct SN_env * z);
static int r_mark_cAsInA(struct SN_env * z);
static int r_is_reserved_word(struct SN_env * z);
static int r_check_vowel_harmony(struct SN_env * z);
static int r_append_U_to_stems_ending_with_d_or_g(struct SN_env * z);
#ifdef __cplusplus
extern "C" {
#endif
extern struct SN_env * turkish_UTF_8_create_env(void);
extern void turkish_UTF_8_close_env(struct SN_env * z);
#ifdef __cplusplus
}
#endif
static const symbol s_0_0[1] = { 'm' };
static const symbol s_0_1[1] = { 'n' };
static const symbol s_0_2[3] = { 'm', 'i', 'z' };
static const symbol s_0_3[3] = { 'n', 'i', 'z' };
static const symbol s_0_4[3] = { 'm', 'u', 'z' };
static const symbol s_0_5[3] = { 'n', 'u', 'z' };
static const symbol s_0_6[4] = { 'm', 0xC4, 0xB1, 'z' };
static const symbol s_0_7[4] = { 'n', 0xC4, 0xB1, 'z' };
static const symbol s_0_8[4] = { 'm', 0xC3, 0xBC, 'z' };
static const symbol s_0_9[4] = { 'n', 0xC3, 0xBC, 'z' };
static const struct among a_0[10] =
{
/* 0 */ { 1, s_0_0, -1, -1, 0},
/* 1 */ { 1, s_0_1, -1, -1, 0},
/* 2 */ { 3, s_0_2, -1, -1, 0},
/* 3 */ { 3, s_0_3, -1, -1, 0},
/* 4 */ { 3, s_0_4, -1, -1, 0},
/* 5 */ { 3, s_0_5, -1, -1, 0},
/* 6 */ { 4, s_0_6, -1, -1, 0},
/* 7 */ { 4, s_0_7, -1, -1, 0},
/* 8 */ { 4, s_0_8, -1, -1, 0},
/* 9 */ { 4, s_0_9, -1, -1, 0}
};
static const symbol s_1_0[4] = { 'l', 'e', 'r', 'i' };
static const symbol s_1_1[5] = { 'l', 'a', 'r', 0xC4, 0xB1 };
static const struct among a_1[2] =
{
/* 0 */ { 4, s_1_0, -1, -1, 0},
/* 1 */ { 5, s_1_1, -1, -1, 0}
};
static const symbol s_2_0[2] = { 'n', 'i' };
static const symbol s_2_1[2] = { 'n', 'u' };
static const symbol s_2_2[3] = { 'n', 0xC4, 0xB1 };
static const symbol s_2_3[3] = { 'n', 0xC3, 0xBC };
static const struct among a_2[4] =
{
/* 0 */ { 2, s_2_0, -1, -1, 0},
/* 1 */ { 2, s_2_1, -1, -1, 0},
/* 2 */ { 3, s_2_2, -1, -1, 0},
/* 3 */ { 3, s_2_3, -1, -1, 0}
};
static const symbol s_3_0[2] = { 'i', 'n' };
static const symbol s_3_1[2] = { 'u', 'n' };
static const symbol s_3_2[3] = { 0xC4, 0xB1, 'n' };
static const symbol s_3_3[3] = { 0xC3, 0xBC, 'n' };
static const struct among a_3[4] =
{
/* 0 */ { 2, s_3_0, -1, -1, 0},
/* 1 */ { 2, s_3_1, -1, -1, 0},
/* 2 */ { 3, s_3_2, -1, -1, 0},
/* 3 */ { 3, s_3_3, -1, -1, 0}
};
static const symbol s_4_0[1] = { 'a' };
static const symbol s_4_1[1] = { 'e' };
static const struct among a_4[2] =
{
/* 0 */ { 1, s_4_0, -1, -1, 0},
/* 1 */ { 1, s_4_1, -1, -1, 0}
};
static const symbol s_5_0[2] = { 'n', 'a' };
static const symbol s_5_1[2] = { 'n', 'e' };
static const struct among a_5[2] =
{
/* 0 */ { 2, s_5_0, -1, -1, 0},
/* 1 */ { 2, s_5_1, -1, -1, 0}
};
static const symbol s_6_0[2] = { 'd', 'a' };
static const symbol s_6_1[2] = { 't', 'a' };
static const symbol s_6_2[2] = { 'd', 'e' };
static const symbol s_6_3[2] = { 't', 'e' };
static const struct among a_6[4] =
{
/* 0 */ { 2, s_6_0, -1, -1, 0},
/* 1 */ { 2, s_6_1, -1, -1, 0},
/* 2 */ { 2, s_6_2, -1, -1, 0},
/* 3 */ { 2, s_6_3, -1, -1, 0}
};
static const symbol s_7_0[3] = { 'n', 'd', 'a' };
static const symbol s_7_1[3] = { 'n', 'd', 'e' };
static const struct among a_7[2] =
{
/* 0 */ { 3, s_7_0, -1, -1, 0},
/* 1 */ { 3, s_7_1, -1, -1, 0}
};
static const symbol s_8_0[3] = { 'd', 'a', 'n' };
static const symbol s_8_1[3] = { 't', 'a', 'n' };
static const symbol s_8_2[3] = { 'd', 'e', 'n' };
static const symbol s_8_3[3] = { 't', 'e', 'n' };
static const struct among a_8[4] =
{
/* 0 */ { 3, s_8_0, -1, -1, 0},
/* 1 */ { 3, s_8_1, -1, -1, 0},
/* 2 */ { 3, s_8_2, -1, -1, 0},
/* 3 */ { 3, s_8_3, -1, -1, 0}
};
static const symbol s_9_0[4] = { 'n', 'd', 'a', 'n' };
static const symbol s_9_1[4] = { 'n', 'd', 'e', 'n' };
static const struct among a_9[2] =
{
/* 0 */ { 4, s_9_0, -1, -1, 0},
/* 1 */ { 4, s_9_1, -1, -1, 0}
};
static const symbol s_10_0[2] = { 'l', 'a' };
static const symbol s_10_1[2] = { 'l', 'e' };
static const struct among a_10[2] =
{
/* 0 */ { 2, s_10_0, -1, -1, 0},
/* 1 */ { 2, s_10_1, -1, -1, 0}
};
static const symbol s_11_0[2] = { 'c', 'a' };
static const symbol s_11_1[2] = { 'c', 'e' };
static const struct among a_11[2] =
{
/* 0 */ { 2, s_11_0, -1, -1, 0},
/* 1 */ { 2, s_11_1, -1, -1, 0}
};
static const symbol s_12_0[2] = { 'i', 'm' };
static const symbol s_12_1[2] = { 'u', 'm' };
static const symbol s_12_2[3] = { 0xC4, 0xB1, 'm' };
static const symbol s_12_3[3] = { 0xC3, 0xBC, 'm' };
static const struct among a_12[4] =
{
/* 0 */ { 2, s_12_0, -1, -1, 0},
/* 1 */ { 2, s_12_1, -1, -1, 0},
/* 2 */ { 3, s_12_2, -1, -1, 0},
/* 3 */ { 3, s_12_3, -1, -1, 0}
};
static const symbol s_13_0[3] = { 's', 'i', 'n' };
static const symbol s_13_1[3] = { 's', 'u', 'n' };
static const symbol s_13_2[4] = { 's', 0xC4, 0xB1, 'n' };
static const symbol s_13_3[4] = { 's', 0xC3, 0xBC, 'n' };
static const struct among a_13[4] =
{
/* 0 */ { 3, s_13_0, -1, -1, 0},
/* 1 */ { 3, s_13_1, -1, -1, 0},
/* 2 */ { 4, s_13_2, -1, -1, 0},
/* 3 */ { 4, s_13_3, -1, -1, 0}
};
static const symbol s_14_0[2] = { 'i', 'z' };
static const symbol s_14_1[2] = { 'u', 'z' };
static const symbol s_14_2[3] = { 0xC4, 0xB1, 'z' };
static const symbol s_14_3[3] = { 0xC3, 0xBC, 'z' };
static const struct among a_14[4] =
{
/* 0 */ { 2, s_14_0, -1, -1, 0},
/* 1 */ { 2, s_14_1, -1, -1, 0},
/* 2 */ { 3, s_14_2, -1, -1, 0},
/* 3 */ { 3, s_14_3, -1, -1, 0}
};
static const symbol s_15_0[5] = { 's', 'i', 'n', 'i', 'z' };
static const symbol s_15_1[5] = { 's', 'u', 'n', 'u', 'z' };
static const symbol s_15_2[7] = { 's', 0xC4, 0xB1, 'n', 0xC4, 0xB1, 'z' };
static const symbol s_15_3[7] = { 's', 0xC3, 0xBC, 'n', 0xC3, 0xBC, 'z' };
static const struct among a_15[4] =
{
/* 0 */ { 5, s_15_0, -1, -1, 0},
/* 1 */ { 5, s_15_1, -1, -1, 0},
/* 2 */ { 7, s_15_2, -1, -1, 0},
/* 3 */ { 7, s_15_3, -1, -1, 0}
};
static const symbol s_16_0[3] = { 'l', 'a', 'r' };
static const symbol s_16_1[3] = { 'l', 'e', 'r' };
static const struct among a_16[2] =
{
/* 0 */ { 3, s_16_0, -1, -1, 0},
/* 1 */ { 3, s_16_1, -1, -1, 0}
};
static const symbol s_17_0[3] = { 'n', 'i', 'z' };
static const symbol s_17_1[3] = { 'n', 'u', 'z' };
static const symbol s_17_2[4] = { 'n', 0xC4, 0xB1, 'z' };
static const symbol s_17_3[4] = { 'n', 0xC3, 0xBC, 'z' };
static const struct among a_17[4] =
{
/* 0 */ { 3, s_17_0, -1, -1, 0},
/* 1 */ { 3, s_17_1, -1, -1, 0},
/* 2 */ { 4, s_17_2, -1, -1, 0},
/* 3 */ { 4, s_17_3, -1, -1, 0}
};
static const symbol s_18_0[3] = { 'd', 'i', 'r' };
static const symbol s_18_1[3] = { 't', 'i', 'r' };
static const symbol s_18_2[3] = { 'd', 'u', 'r' };
static const symbol s_18_3[3] = { 't', 'u', 'r' };
static const symbol s_18_4[4] = { 'd', 0xC4, 0xB1, 'r' };
static const symbol s_18_5[4] = { 't', 0xC4, 0xB1, 'r' };
static const symbol s_18_6[4] = { 'd', 0xC3, 0xBC, 'r' };
static const symbol s_18_7[4] = { 't', 0xC3, 0xBC, 'r' };
static const struct among a_18[8] =
{
/* 0 */ { 3, s_18_0, -1, -1, 0},
/* 1 */ { 3, s_18_1, -1, -1, 0},
/* 2 */ { 3, s_18_2, -1, -1, 0},
/* 3 */ { 3, s_18_3, -1, -1, 0},
/* 4 */ { 4, s_18_4, -1, -1, 0},
/* 5 */ { 4, s_18_5, -1, -1, 0},
/* 6 */ { 4, s_18_6, -1, -1, 0},
/* 7 */ { 4, s_18_7, -1, -1, 0}
};
static const symbol s_19_0[7] = { 'c', 'a', 's', 0xC4, 0xB1, 'n', 'a' };
static const symbol s_19_1[6] = { 'c', 'e', 's', 'i', 'n', 'e' };
static const struct among a_19[2] =
{
/* 0 */ { 7, s_19_0, -1, -1, 0},
/* 1 */ { 6, s_19_1, -1, -1, 0}
};
static const symbol s_20_0[2] = { 'd', 'i' };
static const symbol s_20_1[2] = { 't', 'i' };
static const symbol s_20_2[3] = { 'd', 'i', 'k' };
static const symbol s_20_3[3] = { 't', 'i', 'k' };
static const symbol s_20_4[3] = { 'd', 'u', 'k' };
static const symbol s_20_5[3] = { 't', 'u', 'k' };
static const symbol s_20_6[4] = { 'd', 0xC4, 0xB1, 'k' };
static const symbol s_20_7[4] = { 't', 0xC4, 0xB1, 'k' };
static const symbol s_20_8[4] = { 'd', 0xC3, 0xBC, 'k' };
static const symbol s_20_9[4] = { 't', 0xC3, 0xBC, 'k' };
static const symbol s_20_10[3] = { 'd', 'i', 'm' };
static const symbol s_20_11[3] = { 't', 'i', 'm' };
static const symbol s_20_12[3] = { 'd', 'u', 'm' };
static const symbol s_20_13[3] = { 't', 'u', 'm' };
static const symbol s_20_14[4] = { 'd', 0xC4, 0xB1, 'm' };
static const symbol s_20_15[4] = { 't', 0xC4, 0xB1, 'm' };
static const symbol s_20_16[4] = { 'd', 0xC3, 0xBC, 'm' };
static const symbol s_20_17[4] = { 't', 0xC3, 0xBC, 'm' };
static const symbol s_20_18[3] = { 'd', 'i', 'n' };
static const symbol s_20_19[3] = { 't', 'i', 'n' };
static const symbol s_20_20[3] = { 'd', 'u', 'n' };
static const symbol s_20_21[3] = { 't', 'u', 'n' };
static const symbol s_20_22[4] = { 'd', 0xC4, 0xB1, 'n' };
static const symbol s_20_23[4] = { 't', 0xC4, 0xB1, 'n' };
static const symbol s_20_24[4] = { 'd', 0xC3, 0xBC, 'n' };
static const symbol s_20_25[4] = { 't', 0xC3, 0xBC, 'n' };
static const symbol s_20_26[2] = { 'd', 'u' };
static const symbol s_20_27[2] = { 't', 'u' };
static const symbol s_20_28[3] = { 'd', 0xC4, 0xB1 };
static const symbol s_20_29[3] = { 't', 0xC4, 0xB1 };
static const symbol s_20_30[3] = { 'd', 0xC3, 0xBC };
static const symbol s_20_31[3] = { 't', 0xC3, 0xBC };
static const struct among a_20[32] =
{
/* 0 */ { 2, s_20_0, -1, -1, 0},
/* 1 */ { 2, s_20_1, -1, -1, 0},
/* 2 */ { 3, s_20_2, -1, -1, 0},
/* 3 */ { 3, s_20_3, -1, -1, 0},
/* 4 */ { 3, s_20_4, -1, -1, 0},
/* 5 */ { 3, s_20_5, -1, -1, 0},
/* 6 */ { 4, s_20_6, -1, -1, 0},
/* 7 */ { 4, s_20_7, -1, -1, 0},
/* 8 */ { 4, s_20_8, -1, -1, 0},
/* 9 */ { 4, s_20_9, -1, -1, 0},
/* 10 */ { 3, s_20_10, -1, -1, 0},
/* 11 */ { 3, s_20_11, -1, -1, 0},
/* 12 */ { 3, s_20_12, -1, -1, 0},
/* 13 */ { 3, s_20_13, -1, -1, 0},
/* 14 */ { 4, s_20_14, -1, -1, 0},
/* 15 */ { 4, s_20_15, -1, -1, 0},
/* 16 */ { 4, s_20_16, -1, -1, 0},
/* 17 */ { 4, s_20_17, -1, -1, 0},
/* 18 */ { 3, s_20_18, -1, -1, 0},
/* 19 */ { 3, s_20_19, -1, -1, 0},
/* 20 */ { 3, s_20_20, -1, -1, 0},
/* 21 */ { 3, s_20_21, -1, -1, 0},
/* 22 */ { 4, s_20_22, -1, -1, 0},
/* 23 */ { 4, s_20_23, -1, -1, 0},
/* 24 */ { 4, s_20_24, -1, -1, 0},
/* 25 */ { 4, s_20_25, -1, -1, 0},
/* 26 */ { 2, s_20_26, -1, -1, 0},
/* 27 */ { 2, s_20_27, -1, -1, 0},
/* 28 */ { 3, s_20_28, -1, -1, 0},
/* 29 */ { 3, s_20_29, -1, -1, 0},
/* 30 */ { 3, s_20_30, -1, -1, 0},
/* 31 */ { 3, s_20_31, -1, -1, 0}
};
static const symbol s_21_0[2] = { 's', 'a' };
static const symbol s_21_1[2] = { 's', 'e' };
static const symbol s_21_2[3] = { 's', 'a', 'k' };
static const symbol s_21_3[3] = { 's', 'e', 'k' };
static const symbol s_21_4[3] = { 's', 'a', 'm' };
static const symbol s_21_5[3] = { 's', 'e', 'm' };
static const symbol s_21_6[3] = { 's', 'a', 'n' };
static const symbol s_21_7[3] = { 's', 'e', 'n' };
static const struct among a_21[8] =
{
/* 0 */ { 2, s_21_0, -1, -1, 0},
/* 1 */ { 2, s_21_1, -1, -1, 0},
/* 2 */ { 3, s_21_2, -1, -1, 0},
/* 3 */ { 3, s_21_3, -1, -1, 0},
/* 4 */ { 3, s_21_4, -1, -1, 0},
/* 5 */ { 3, s_21_5, -1, -1, 0},
/* 6 */ { 3, s_21_6, -1, -1, 0},
/* 7 */ { 3, s_21_7, -1, -1, 0}
};
static const symbol s_22_0[4] = { 'm', 'i', 0xC5, 0x9F };
static const symbol s_22_1[4] = { 'm', 'u', 0xC5, 0x9F };
static const symbol s_22_2[5] = { 'm', 0xC4, 0xB1, 0xC5, 0x9F };
static const symbol s_22_3[5] = { 'm', 0xC3, 0xBC, 0xC5, 0x9F };
static const struct among a_22[4] =
{
/* 0 */ { 4, s_22_0, -1, -1, 0},
/* 1 */ { 4, s_22_1, -1, -1, 0},
/* 2 */ { 5, s_22_2, -1, -1, 0},
/* 3 */ { 5, s_22_3, -1, -1, 0}
};
static const symbol s_23_0[1] = { 'b' };
static const symbol s_23_1[1] = { 'c' };
static const symbol s_23_2[1] = { 'd' };
static const symbol s_23_3[2] = { 0xC4, 0x9F };
static const struct among a_23[4] =
{
/* 0 */ { 1, s_23_0, -1, 1, 0},
/* 1 */ { 1, s_23_1, -1, 2, 0},
/* 2 */ { 1, s_23_2, -1, 3, 0},
/* 3 */ { 2, s_23_3, -1, 4, 0}
};
static const unsigned char g_vowel[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 8, 0, 0, 0, 0, 0, 0, 1 };
static const unsigned char g_U[] = { 1, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1 };
static const unsigned char g_vowel1[] = { 1, 64, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 };
static const unsigned char g_vowel2[] = { 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130 };
static const unsigned char g_vowel3[] = { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 };
static const unsigned char g_vowel4[] = { 17 };
static const unsigned char g_vowel5[] = { 65 };
static const unsigned char g_vowel6[] = { 65 };
static const symbol s_0[] = { 'a' };
static const symbol s_1[] = { 'e' };
static const symbol s_2[] = { 0xC4, 0xB1 };
static const symbol s_3[] = { 'i' };
static const symbol s_4[] = { 'o' };
static const symbol s_5[] = { 0xC3, 0xB6 };
static const symbol s_6[] = { 'u' };
static const symbol s_7[] = { 0xC3, 0xBC };
static const symbol s_8[] = { 'n' };
static const symbol s_9[] = { 'n' };
static const symbol s_10[] = { 's' };
static const symbol s_11[] = { 's' };
static const symbol s_12[] = { 'y' };
static const symbol s_13[] = { 'y' };
static const symbol s_14[] = { 'k', 'i' };
static const symbol s_15[] = { 'k', 'e', 'n' };
static const symbol s_16[] = { 'p' };
static const symbol s_17[] = { 0xC3, 0xA7 };
static const symbol s_18[] = { 't' };
static const symbol s_19[] = { 'k' };
static const symbol s_20[] = { 'd' };
static const symbol s_21[] = { 'g' };
static const symbol s_22[] = { 'a' };
static const symbol s_23[] = { 0xC4, 0xB1 };
static const symbol s_24[] = { 0xC4, 0xB1 };
static const symbol s_25[] = { 'e' };
static const symbol s_26[] = { 'i' };
static const symbol s_27[] = { 'i' };
static const symbol s_28[] = { 'o' };
static const symbol s_29[] = { 'u' };
static const symbol s_30[] = { 'u' };
static const symbol s_31[] = { 0xC3, 0xB6 };
static const symbol s_32[] = { 0xC3, 0xBC };
static const symbol s_33[] = { 0xC3, 0xBC };
static const symbol s_34[] = { 'a', 'd' };
static const symbol s_35[] = { 's', 'o', 'y', 'a', 'd' };
static int r_check_vowel_harmony(struct SN_env * z) {
{ int m_test = z->l - z->c; /* test, line 112 */
if (out_grouping_b_U(z, g_vowel, 97, 305, 1) < 0) return 0; /* goto */ /* grouping vowel, line 114 */
{ int m1 = z->l - z->c; (void)m1; /* or, line 116 */
if (!(eq_s_b(z, 1, s_0))) goto lab1;
if (out_grouping_b_U(z, g_vowel1, 97, 305, 1) < 0) goto lab1; /* goto */ /* grouping vowel1, line 116 */
goto lab0;
lab1:
z->c = z->l - m1;
if (!(eq_s_b(z, 1, s_1))) goto lab2;
if (out_grouping_b_U(z, g_vowel2, 101, 252, 1) < 0) goto lab2; /* goto */ /* grouping vowel2, line 117 */
goto lab0;
lab2:
z->c = z->l - m1;
if (!(eq_s_b(z, 2, s_2))) goto lab3;
if (out_grouping_b_U(z, g_vowel3, 97, 305, 1) < 0) goto lab3; /* goto */ /* grouping vowel3, line 118 */
goto lab0;
lab3:
z->c = z->l - m1;
if (!(eq_s_b(z, 1, s_3))) goto lab4;
if (out_grouping_b_U(z, g_vowel4, 101, 105, 1) < 0) goto lab4; /* goto */ /* grouping vowel4, line 119 */
goto lab0;
lab4:
z->c = z->l - m1;
if (!(eq_s_b(z, 1, s_4))) goto lab5;
if (out_grouping_b_U(z, g_vowel5, 111, 117, 1) < 0) goto lab5; /* goto */ /* grouping vowel5, line 120 */
goto lab0;
lab5:
z->c = z->l - m1;
if (!(eq_s_b(z, 2, s_5))) goto lab6;
if (out_grouping_b_U(z, g_vowel6, 246, 252, 1) < 0) goto lab6; /* goto */ /* grouping vowel6, line 121 */
goto lab0;
lab6:
z->c = z->l - m1;
if (!(eq_s_b(z, 1, s_6))) goto lab7;
if (out_grouping_b_U(z, g_vowel5, 111, 117, 1) < 0) goto lab7; /* goto */ /* grouping vowel5, line 122 */
goto lab0;
lab7:
z->c = z->l - m1;
if (!(eq_s_b(z, 2, s_7))) return 0;
if (out_grouping_b_U(z, g_vowel6, 246, 252, 1) < 0) return 0; /* goto */ /* grouping vowel6, line 123 */
}
lab0:
z->c = z->l - m_test;
}
return 1;
}
static int r_mark_suffix_with_optional_n_consonant(struct SN_env * z) {
{ int m1 = z->l - z->c; (void)m1; /* or, line 134 */
{ int m_test = z->l - z->c; /* test, line 133 */
if (!(eq_s_b(z, 1, s_8))) goto lab1;
z->c = z->l - m_test;
}
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) goto lab1;
z->c = ret; /* next, line 133 */
}
{ int m_test = z->l - z->c; /* test, line 133 */
if (in_grouping_b_U(z, g_vowel, 97, 305, 0)) goto lab1;
z->c = z->l - m_test;
}
goto lab0;
lab1:
z->c = z->l - m1;
{ int m2 = z->l - z->c; (void)m2; /* not, line 135 */
{ int m_test = z->l - z->c; /* test, line 135 */
if (!(eq_s_b(z, 1, s_9))) goto lab2;
z->c = z->l - m_test;
}
return 0;
lab2:
z->c = z->l - m2;
}
{ int m_test = z->l - z->c; /* test, line 135 */
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) return 0;
z->c = ret; /* next, line 135 */
}
{ int m_test = z->l - z->c; /* test, line 135 */
if (in_grouping_b_U(z, g_vowel, 97, 305, 0)) return 0;
z->c = z->l - m_test;
}
z->c = z->l - m_test;
}
}
lab0:
return 1;
}
static int r_mark_suffix_with_optional_s_consonant(struct SN_env * z) {
{ int m1 = z->l - z->c; (void)m1; /* or, line 145 */
{ int m_test = z->l - z->c; /* test, line 144 */
if (!(eq_s_b(z, 1, s_10))) goto lab1;
z->c = z->l - m_test;
}
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) goto lab1;
z->c = ret; /* next, line 144 */
}
{ int m_test = z->l - z->c; /* test, line 144 */
if (in_grouping_b_U(z, g_vowel, 97, 305, 0)) goto lab1;
z->c = z->l - m_test;
}
goto lab0;
lab1:
z->c = z->l - m1;
{ int m2 = z->l - z->c; (void)m2; /* not, line 146 */
{ int m_test = z->l - z->c; /* test, line 146 */
if (!(eq_s_b(z, 1, s_11))) goto lab2;
z->c = z->l - m_test;
}
return 0;
lab2:
z->c = z->l - m2;
}
{ int m_test = z->l - z->c; /* test, line 146 */
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) return 0;
z->c = ret; /* next, line 146 */
}
{ int m_test = z->l - z->c; /* test, line 146 */
if (in_grouping_b_U(z, g_vowel, 97, 305, 0)) return 0;
z->c = z->l - m_test;
}
z->c = z->l - m_test;
}
}
lab0:
return 1;
}
static int r_mark_suffix_with_optional_y_consonant(struct SN_env * z) {
{ int m1 = z->l - z->c; (void)m1; /* or, line 155 */
{ int m_test = z->l - z->c; /* test, line 154 */
if (!(eq_s_b(z, 1, s_12))) goto lab1;
z->c = z->l - m_test;
}
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) goto lab1;
z->c = ret; /* next, line 154 */
}
{ int m_test = z->l - z->c; /* test, line 154 */
if (in_grouping_b_U(z, g_vowel, 97, 305, 0)) goto lab1;
z->c = z->l - m_test;
}
goto lab0;
lab1:
z->c = z->l - m1;
{ int m2 = z->l - z->c; (void)m2; /* not, line 156 */
{ int m_test = z->l - z->c; /* test, line 156 */
if (!(eq_s_b(z, 1, s_13))) goto lab2;
z->c = z->l - m_test;
}
return 0;
lab2:
z->c = z->l - m2;
}
{ int m_test = z->l - z->c; /* test, line 156 */
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) return 0;
z->c = ret; /* next, line 156 */
}
{ int m_test = z->l - z->c; /* test, line 156 */
if (in_grouping_b_U(z, g_vowel, 97, 305, 0)) return 0;
z->c = z->l - m_test;
}
z->c = z->l - m_test;
}
}
lab0:
return 1;
}
static int r_mark_suffix_with_optional_U_vowel(struct SN_env * z) {
{ int m1 = z->l - z->c; (void)m1; /* or, line 161 */
{ int m_test = z->l - z->c; /* test, line 160 */
if (in_grouping_b_U(z, g_U, 105, 305, 0)) goto lab1;
z->c = z->l - m_test;
}
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) goto lab1;
z->c = ret; /* next, line 160 */
}
{ int m_test = z->l - z->c; /* test, line 160 */
if (out_grouping_b_U(z, g_vowel, 97, 305, 0)) goto lab1;
z->c = z->l - m_test;
}
goto lab0;
lab1:
z->c = z->l - m1;
{ int m2 = z->l - z->c; (void)m2; /* not, line 162 */
{ int m_test = z->l - z->c; /* test, line 162 */
if (in_grouping_b_U(z, g_U, 105, 305, 0)) goto lab2;
z->c = z->l - m_test;
}
return 0;
lab2:
z->c = z->l - m2;
}
{ int m_test = z->l - z->c; /* test, line 162 */
{ int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
if (ret < 0) return 0;
z->c = ret; /* next, line 162 */
}
{ int m_test = z->l - z->c; /* test, line 162 */
if (out_grouping_b_U(z, g_vowel, 97, 305, 0)) return 0;
z->c = z->l - m_test;
}
z->c = z->l - m_test;
}
}
lab0:
return 1;
}
static int r_mark_possessives(struct SN_env * z) {
if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((67133440 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
if (!(find_among_b(z, a_0, 10))) return 0; /* among, line 167 */
{ int ret = r_mark_suffix_with_optional_U_vowel(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_U_vowel, line 169 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_sU(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 173 */
if (ret < 0) return ret;
}
if (in_grouping_b_U(z, g_U, 105, 305, 0)) return 0;
{ int ret = r_mark_suffix_with_optional_s_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_s_consonant, line 175 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_lArI(struct SN_env * z) {
if (z->c - 3 <= z->lb || (z->p[z->c - 1] != 105 && z->p[z->c - 1] != 177)) return 0;
if (!(find_among_b(z, a_1, 2))) return 0; /* among, line 179 */
return 1;
}
static int r_mark_yU(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 183 */
if (ret < 0) return ret;
}
if (in_grouping_b_U(z, g_U, 105, 305, 0)) return 0;
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 185 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_nU(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 189 */
if (ret < 0) return ret;
}
if (!(find_among_b(z, a_2, 4))) return 0; /* among, line 190 */
return 1;
}
static int r_mark_nUn(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 194 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || z->p[z->c - 1] != 110) return 0;
if (!(find_among_b(z, a_3, 4))) return 0; /* among, line 195 */
{ int ret = r_mark_suffix_with_optional_n_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_n_consonant, line 196 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_yA(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 200 */
if (ret < 0) return ret;
}
if (z->c <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_4, 2))) return 0; /* among, line 201 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 202 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_nA(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 206 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_5, 2))) return 0; /* among, line 207 */
return 1;
}
static int r_mark_DA(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 211 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_6, 4))) return 0; /* among, line 212 */
return 1;
}
static int r_mark_ndA(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 216 */
if (ret < 0) return ret;
}
if (z->c - 2 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_7, 2))) return 0; /* among, line 217 */
return 1;
}
static int r_mark_DAn(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 221 */
if (ret < 0) return ret;
}
if (z->c - 2 <= z->lb || z->p[z->c - 1] != 110) return 0;
if (!(find_among_b(z, a_8, 4))) return 0; /* among, line 222 */
return 1;
}
static int r_mark_ndAn(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 226 */
if (ret < 0) return ret;
}
if (z->c - 3 <= z->lb || z->p[z->c - 1] != 110) return 0;
if (!(find_among_b(z, a_9, 2))) return 0; /* among, line 227 */
return 1;
}
static int r_mark_ylA(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 231 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_10, 2))) return 0; /* among, line 232 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 233 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_ki(struct SN_env * z) {
if (!(eq_s_b(z, 2, s_14))) return 0;
return 1;
}
static int r_mark_ncA(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 241 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_11, 2))) return 0; /* among, line 242 */
{ int ret = r_mark_suffix_with_optional_n_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_n_consonant, line 243 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_yUm(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 247 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || z->p[z->c - 1] != 109) return 0;
if (!(find_among_b(z, a_12, 4))) return 0; /* among, line 248 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 249 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_sUn(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 253 */
if (ret < 0) return ret;
}
if (z->c - 2 <= z->lb || z->p[z->c - 1] != 110) return 0;
if (!(find_among_b(z, a_13, 4))) return 0; /* among, line 254 */
return 1;
}
static int r_mark_yUz(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 258 */
if (ret < 0) return ret;
}
if (z->c - 1 <= z->lb || z->p[z->c - 1] != 122) return 0;
if (!(find_among_b(z, a_14, 4))) return 0; /* among, line 259 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 260 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_sUnUz(struct SN_env * z) {
if (z->c - 4 <= z->lb || z->p[z->c - 1] != 122) return 0;
if (!(find_among_b(z, a_15, 4))) return 0; /* among, line 264 */
return 1;
}
static int r_mark_lAr(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 268 */
if (ret < 0) return ret;
}
if (z->c - 2 <= z->lb || z->p[z->c - 1] != 114) return 0;
if (!(find_among_b(z, a_16, 2))) return 0; /* among, line 269 */
return 1;
}
static int r_mark_nUz(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 273 */
if (ret < 0) return ret;
}
if (z->c - 2 <= z->lb || z->p[z->c - 1] != 122) return 0;
if (!(find_among_b(z, a_17, 4))) return 0; /* among, line 274 */
return 1;
}
static int r_mark_DUr(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 278 */
if (ret < 0) return ret;
}
if (z->c - 2 <= z->lb || z->p[z->c - 1] != 114) return 0;
if (!(find_among_b(z, a_18, 8))) return 0; /* among, line 279 */
return 1;
}
static int r_mark_cAsInA(struct SN_env * z) {
if (z->c - 5 <= z->lb || (z->p[z->c - 1] != 97 && z->p[z->c - 1] != 101)) return 0;
if (!(find_among_b(z, a_19, 2))) return 0; /* among, line 283 */
return 1;
}
static int r_mark_yDU(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 287 */
if (ret < 0) return ret;
}
if (!(find_among_b(z, a_20, 32))) return 0; /* among, line 288 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 292 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_ysA(struct SN_env * z) {
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((26658 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
if (!(find_among_b(z, a_21, 8))) return 0; /* among, line 297 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 298 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_ymUs_(struct SN_env * z) {
{ int ret = r_check_vowel_harmony(z);
if (ret == 0) return 0; /* call check_vowel_harmony, line 302 */
if (ret < 0) return ret;
}
if (z->c - 3 <= z->lb || z->p[z->c - 1] != 159) return 0;
if (!(find_among_b(z, a_22, 4))) return 0; /* among, line 303 */
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 304 */
if (ret < 0) return ret;
}
return 1;
}
static int r_mark_yken(struct SN_env * z) {
if (!(eq_s_b(z, 3, s_15))) return 0;
{ int ret = r_mark_suffix_with_optional_y_consonant(z);
if (ret == 0) return 0; /* call mark_suffix_with_optional_y_consonant, line 308 */
if (ret < 0) return ret;
}
return 1;
}
static int r_stem_nominal_verb_suffixes(struct SN_env * z) {
z->ket = z->c; /* [, line 312 */
z->B[0] = 1; /* set continue_stemming_noun_suffixes, line 313 */
{ int m1 = z->l - z->c; (void)m1; /* or, line 315 */
{ int m2 = z->l - z->c; (void)m2; /* or, line 314 */
{ int ret = r_mark_ymUs_(z);
if (ret == 0) goto lab3; /* call mark_ymUs_, line 314 */
if (ret < 0) return ret;
}
goto lab2;
lab3:
z->c = z->l - m2;
{ int ret = r_mark_yDU(z);
if (ret == 0) goto lab4; /* call mark_yDU, line 314 */
if (ret < 0) return ret;
}
goto lab2;
lab4:
z->c = z->l - m2;