Home | History | Annotate | Download | only in fts1

Lines Matching refs:isVowel

136 ** isConsonant() and isVowel() determine if their first character in
148 static int isVowel(const char*);
156 return z[1]==0 || isVowel(z + 1);
158 static int isVowel(const char *z){
188 while( isVowel(z) ){ z++; }
198 while( isVowel(z) ){ z++; }
202 while( isVowel(z) ){ z++; }
212 while( isVowel(z) ){ z++; }
216 while( isVowel(z) ){ z++; }
252 z[1]!=0 && isVowel(z+1) &&