Lines Matching defs:isVowel
123869 ** isConsonant() and isVowel() determine if their first character in
123881 static int isVowel(const char*);
123889 return z[1]==0 || isVowel(z + 1);
123891 static int isVowel(const char *z){
123921 while( isVowel(z) ){ z++; }
123931 while( isVowel(z) ){ z++; }
123935 while( isVowel(z) ){ z++; }
123945 while( isVowel(z) ){ z++; }
123949 while( isVowel(z) ){ z++; }
123985 isVowel(z+1) &&