MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / IsLowerCase

Function IsLowerCase

scintilla/lexlib/CharacterSet.h:117–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

115}
116
117inline bool IsLowerCase(int ch) {
118 return (ch >= 'a') && (ch <= 'z');
119}
120
121inline bool IsUpperCase(int ch) {
122 return (ch >= 'A') && (ch <= 'Z');

Callers 2

WordPartLeftMethod · 0.85
WordPartRightMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected