MCPcopy Create free account
hub / github.com/Illumina/hap.py / isControlCharacter

Function isControlCharacter

external/jsoncpp/jsoncpp.cpp:128–128  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

126
127/// Returns true if ch is a control character (in range [0,32[).
128static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }
129
130enum {
131 /// 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