Browse Source

Fix formatting of the previous changes to match style guidelines.

master
Reece H. Dunn 8 years ago
parent
commit
af1fae46de
1 changed files with 13 additions and 12 deletions
  1. 13
    12
      src/libespeak-ng/dictionary.c

+ 13
- 12
src/libespeak-ng/dictionary.c View File



static int IsLetterGroup(Translator *tr, char *word, int group, int pre) static int IsLetterGroup(Translator *tr, char *word, int group, int pre)
{ {
/* match the word against a list of utf-8 strings
* How this works:
/* match the word against a list of utf-8 strings
* How this works:
* +-+ * +-+
* |c|<-(tr->letterGroups[group]) * |c|<-(tr->letterGroups[group])
* |0| * |0|
* pre==1 — pre-rule * pre==1 — pre-rule
* pre==0 — post-rule * pre==0 — post-rule
*/ */
char *p; // group counter
char *w; // word counter
char *p; // group counter
char *w; // word counter
int len = 0; int len = 0;


p = tr->letterGroups[group]; p = tr->letterGroups[group];
* for post rule somewhere in MatchRule() function. or E.g.: * for post rule somewhere in MatchRule() function. or E.g.:
* *
* .L01 ~ b c * .L01 ~ b c
* .group a
* _L01) a i // this works
* a (L01_ u // this doesn't work
* .group a
* _L01) a i // this works
* a (L01_ u // this doesn't work
*/ */


while ((*p == *w) && (*w != 0)) { while ((*p == *w) && (*w != 0)) {
w++; w++;
p++; p++;
} }
if (*p == 0) { // matched some of group strings
if (*p == 0) { // matched some of group strings
if (pre) if (pre)
return len; return len;
else
return w - word;
return w - word;
} }


while (*p++ != 0) // if string of current group didn't match
; // skip till to the end of string
// if the string of current group didn't match skip till to the
// end of the string
while (*p++ != 0)
;
} }
return 0; return 0;
} }

Loading…
Cancel
Save