Home | History | Annotate | Download | only in orig

Lines Matching defs:isVowel

123821 ** isConsonant() and isVowel() determine if their first character in
123833 static int isVowel(const char*);
123841 return z[1]==0 || isVowel(z + 1);
123843 static int isVowel(const char *z){
123873 while( isVowel(z) ){ z++; }
123883 while( isVowel(z) ){ z++; }
123887 while( isVowel(z) ){ z++; }
123897 while( isVowel(z) ){ z++; }
123901 while( isVowel(z) ){ z++; }
123937 isVowel(z+1) &&