MCPcopy Create free account
hub / github.com/cinder/Cinder / isControlCharacter

Function isControlCharacter

src/jsoncpp/jsoncpp.cpp:129–129  ·  view source on GitHub ↗

Returns true if ch is a control character (in range [0,32[).

Source from the content-addressed store, hash-verified

127
128/// Returns true if ch is a control character (in range [0,32[).
129static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }
130
131enum {
132 /// Constant that specify the size of the buffer that must be passed to

Callers 2

containsControlCharacterFunction · 0.85
valueToQuotedStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected