Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ProgerXP/Notepad2e
/ IsASCII
Function
IsASCII
scintilla/lexlib/CharacterSet.h:113–115 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
111
}
112
113
inline bool IsASCII(int ch) {
114
return (ch >= 0) && (ch < 0x80);
115
}
116
117
inline bool IsLowerCase(int ch) {
118
return (ch >=
'a'
) && (ch <=
'z'
);
Callers
4
IsHaskellLetter
Function · 0.85
IsHaskellAlphaNumeric
Function · 0.85
IsHaskellUpperCase
Function · 0.85
IsAnHaskellOperatorChar
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected