| 193 | } |
| 194 | |
| 195 | static void trimRightWhitespace(const char* input, const char*& end) { |
| 196 | while (input < end && isspace(*(end - 1))) { |
| 197 | end--; |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | static void trimQuotes(const char*& keyStart, const char*& keyEnd) { |
| 202 | // Skip quotations on struct keys. |
no outgoing calls
no test coverage detected