Below function returns, if passes character is vowel or not.
This is done by using Pete Becker's table of bit masking.
bool isvowel(char ch){
return (0x208222>>(ch&0x1f))&1;
}
Below function returns, if passes character is vowel or not.
This is done by using Pete Becker's table of bit masking.
bool isvowel(char ch){
return (0x208222>>(ch&0x1f))&1;
}
For further actions, you may consider blocking this person and/or reporting abuse
Jesse Williams -
Prahlad Yeri -
Mike -
Timothy Spann. 🇺🇦 -
Top comments (0)