MCPcopy Create free account
hub / github.com/cxasm/notepad-- / IsControlCharacter

Function IsControlCharacter

src/qscint/scintilla/src/EditView.cpp:63–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61using namespace Scintilla;
62
63static inline bool IsControlCharacter(int ch) {
64 // iscntrl returns true for lots of chars > 127 which are displayable
65 return ch >= 0 && ch < ' ';
66}
67
68PrintParameters::PrintParameters() {
69 magnification = 0;

Callers 1

DrawCaretsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected