Lines Matching defs:isConsonant
123821 ** isConsonant() and isVowel() determine if their first character in
123834 static int isConsonant(const char *z){
123850 return isConsonant(z + 1);
123875 while( isConsonant(z) ){ z++; }
123885 while( isConsonant(z) ){ z++; }
123889 while( isConsonant(z) ){ z++; }
123899 while( isConsonant(z) ){ z++; }
123903 while( isConsonant(z) ){ z++; }
123911 while( isConsonant(z) ){ z++; }
123922 return isConsonant(z) && z[0]==z[1];
123935 isConsonant(z) &&
123938 isConsonant(z+2);