| 102 | } |
| 103 | |
| 104 | inline bool isWhitespace(const char c) { |
| 105 | if (((c >= 9) && (c <= 13)) || |
| 106 | (c == 32)) { |
| 107 | return true; |
| 108 | } |
| 109 | return false; |
| 110 | } |
| 111 | |
| 112 | inline bool isPunctuation(const char c) { |
| 113 | if ((c > 32 && c < 48) || |
no outgoing calls
no test coverage detected