| 208 | } |
| 209 | |
| 210 | static bool skipToCloseQuotes(const char*& input, const char* end) { |
| 211 | auto ch = *input; |
| 212 | input++; // skip the first " ' |
| 213 | // TODO: escape char |
| 214 | while (input != end) { |
| 215 | if (*input == ch) { |
| 216 | return true; |
| 217 | } |
| 218 | input++; |
| 219 | } |
| 220 | return false; |
| 221 | } |
| 222 | |
| 223 | static bool skipToClose(const char*& input, const char* end, uint64_t& lvl, char target, |
| 224 | const CSVOption* option) { |
no outgoing calls
no test coverage detected