skips the number of characters equal to the length of given text does not check whether the skipped characters are the same as it
| 51 | // skips the number of characters equal to the length of given text |
| 52 | // does not check whether the skipped characters are the same as it |
| 53 | struct skip |
| 54 | { |
| 55 | const char* text; |
| 56 | skip(const char* text) : text(text) {} |
| 57 | }; |
| 58 | |
| 59 | std::istream& operator >> (std::istream& stream, const skip& x); |
| 60 |