* Get position in the file. * @return Position in the file. */
| 69 | * @return Position in the file. |
| 70 | */ |
| 71 | size_t RandomAccessFile::GetPos() const |
| 72 | { |
| 73 | return this->pos + (this->buffer - this->buffer_end); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Test if we have reached the end of the file. |
no outgoing calls
no test coverage detected