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