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