Home | History | Annotate | Download | only in orig

Lines Matching defs:isVowel

141245 ** isConsonant() and isVowel() determine if their first character in
141257 static int isVowel(const char*);
141265 return z[1]==0 || isVowel(z + 1);
141267 static int isVowel(const char *z){
141297 while( isVowel(z) ){ z++; }
141307 while( isVowel(z) ){ z++; }
141311 while( isVowel(z) ){ z++; }
141321 while( isVowel(z) ){ z++; }
141325 while( isVowel(z) ){ z++; }
141361 isVowel