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