MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / isControlCharacter

Function isControlCharacter

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

Returns true if ch is a control character (in range [1,31]).

Source from the content-addressed store, hash-verified

149
150/// Returns true if ch is a control character (in range [1,31]).
151static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }
152
153enum {
154 /// Constant that specify the size of the buffer that must be passed to

Callers 4

containsControlCharacterFunction · 0.85
valueToQuotedStringFunction · 0.85
valueToQuotedStringNFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected