skip blank space, lines and comments
| 84 | |
| 85 | // skip blank space, lines and comments |
| 86 | static void NextToken(const char **car, const char *end) { |
| 87 | SkipSpacesAndLineEnd(car, end); |
| 88 | while (*car < end && (**car == '#' || **car == '\n' || **car == '\r')) { |
| 89 | SkipLine(car, end); |
| 90 | SkipSpacesAndLineEnd(car, end); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | // ------------------------------------------------------------------------------------------------ |
| 95 | // Imports the given file into the given scene structure. |
no test coverage detected