Home | History | Annotate | Download | only in fts2

Lines Matching refs:isVowel

135 ** isConsonant() and isVowel() determine if their first character in
147 static int isVowel(const char*);
155 return z[1]==0 || isVowel(z + 1);
157 static int isVowel(const char *z){
187 while( isVowel(z) ){ z++; }
197 while( isVowel(z) ){ z++; }
201 while( isVowel(z) ){ z++; }
211 while( isVowel(z) ){ z++; }
215 while( isVowel(z) ){ z++; }
251 z[1]!=0 && isVowel(z+1) &&