| 154 | } |
| 155 | |
| 156 | acl_off_t fstream::fseek(acl_off_t offset, int whence) |
| 157 | { |
| 158 | if (stream_ == NULL) { |
| 159 | logger_error("stream_ null"); |
| 160 | return -1; |
| 161 | } |
| 162 | |
| 163 | acl_off_t ret = acl_vstream_fseek(stream_, offset, whence); |
| 164 | eof_ = ret >= 0 ? false : true; |
| 165 | return ret; |
| 166 | } |
| 167 | |
| 168 | acl_off_t fstream::ftell(void) |
| 169 | { |
no test coverage detected