| 84 | } |
| 85 | |
| 86 | int Storage::SetFileReadPos(const string &path, const size_t &offset) { |
| 87 | return SetFilePos(path, offset, MODE::READ); |
| 88 | } |
| 89 | |
| 90 | int Storage::SetFileWritePos(const string &path, const size_t &offset, bool trunc) { |
| 91 | return SetFilePos(path, offset, MODE::WRITE, trunc); |
no outgoing calls
no test coverage detected