| 65 | } |
| 66 | |
| 67 | virtual Status Skip(uint64_t n) { |
| 68 | if (fseek(file_, n, SEEK_CUR)) { |
| 69 | return Status::IOError(filename_, strerror(errno)); |
| 70 | } |
| 71 | return Status::OK(); |
| 72 | } |
| 73 | |
| 74 | virtual Status Tell(uint64_t* pos) { |
| 75 | if (pos == NULL) { |
no test coverage detected