Home | History | Annotate | Download | only in dist

Lines Matching defs:isVowel

141275 ** isConsonant() and isVowel() determine if their first character in
141287 static int isVowel(const char*);
141295 return z[1]==0 || isVowel(z + 1);
141297 static int isVowel(const char *z){
141327 while( isVowel(z) ){ z++; }
141337 while( isVowel(z) ){ z++; }
141341 while( isVowel(z) ){ z++; }
141351 while( isVowel(z) ){ z++; }
141355 while( isVowel(z) ){ z++; }
141391 isVowel(z+1) &&