MCPcopy 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
113inline bool IsASCII(int ch) {
114 return (ch >= 0) && (ch < 0x80);
115}
116
117inline bool IsLowerCase(int ch) {
118 return (ch >= 'a') && (ch <= 'z');

Callers 4

IsHaskellLetterFunction · 0.85
IsHaskellAlphaNumericFunction · 0.85
IsHaskellUpperCaseFunction · 0.85
IsAnHaskellOperatorCharFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected