Home | History | Annotate | Download | only in dist

Lines Matching defs:isVowel

123850 ** isConsonant() and isVowel() determine if their first character in
123862 static int isVowel(const char*);
123870 return z[1]==0 || isVowel(z + 1);
123872 static int isVowel(const char *z){
123902 while( isVowel(z) ){ z++; }
123912 while( isVowel(z) ){ z++; }
123916 while( isVowel(z) ){ z++; }
123926 while( isVowel(z) ){ z++; }
123930 while( isVowel(z) ){ z++; }
123966 isVowel(z+1) &&