| 16 | } |
| 17 | |
| 18 | bool isSpace(char _ch) |
| 19 | { |
| 20 | return ' ' == _ch // Space. |
| 21 | || '\t' == _ch // Horizontal tab. |
| 22 | || '\n' == _ch // Line feed / new line. |
| 23 | || '\r' == _ch // Carriage return. |
| 24 | || '\v' == _ch // Vertical tab. |
| 25 | || '\f' == _ch // Form feed / new page. |
| 26 | ; |
| 27 | } |
| 28 | |
| 29 | bool isUpper(char _ch) |
| 30 | { |
no outgoing calls
no test coverage detected