123456789101112131415161718 |
- @@ -296,6 +296,7 @@
- if (index == a)
- break;
- }
- + if (i > 3) i = 3;
- return i;
- }
-
- @@ -395,6 +396,7 @@
-
- for (i = 0, index = m->next; index != NULL; index = index->next)
- i++;
- + if (i > 10) i = 10;
- return index_mora_in_utterance(m) + i;
- }
-
|