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

Function IsASpace

scintilla/lexlib/CharacterSet.h:91–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89// Functions for classifying characters
90
91inline bool IsASpace(int ch) {
92 return (ch == ' ') || ((ch >= 0x09) && (ch <= 0x0d));
93}
94
95inline bool IsASpaceOrTab(int ch) {
96 return (ch == ' ') || (ch == '\t');

Callers 15

Colourise4glDocFunction · 0.85
ColouriseFlagShipDocFunction · 0.85
LexMethod · 0.85
ColouriseMatlabOctaveDocFunction · 0.85
ColouriseDocumentFunction · 0.85
LexMethod · 0.85
ColouriseBaanDocFunction · 0.85
segIsScriptingIndicatorFunction · 0.85
ColouriseHyperTextDocFunction · 0.85
LexMethod · 0.85
FoldMethod · 0.85

Calls

no outgoing calls

Tested by 1

ColouriseSpecmanDocFunction · 0.68