We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffc4b00 commit 1171abbCopy full SHA for 1171abb
api/WCharacter.h
@@ -63,7 +63,7 @@ inline bool isAlpha(int c)
63
// that fits into the ASCII character set.
64
inline bool isAscii(int c)
65
{
66
- return ( isascii (c) == 0 ? false : true);
+ return ((c & ~0x7f) != 0 ? false : true );
67
}
68
69
0 commit comments