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
Thomas Bnt -
Joao Marques -
Il'ya Dudkin -
Mr Punk da Silva -
Top comments (0)