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