------------------------------------------------------------------------------------------------ skip to the next token
| 80 | // ------------------------------------------------------------------------------------------------ |
| 81 | // skip to the next token |
| 82 | inline const char *AcSkipToNextToken(const char *buffer, const char *end) { |
| 83 | if (!SkipSpaces(&buffer, end)) { |
| 84 | ASSIMP_LOG_ERROR("AC3D: Unexpected EOF/EOL"); |
| 85 | } |
| 86 | return buffer; |
| 87 | } |
| 88 | |
| 89 | // ------------------------------------------------------------------------------------------------ |
| 90 | // read a string (may be enclosed in double quotation marks). buffer must point to " |
no test coverage detected