| 20 | } |
| 21 | |
| 22 | int64_t FileInfo::readFile(void* buf, size_t nbyte) { |
| 23 | return fileSystem->readFile(*this, buf, nbyte); |
| 24 | } |
| 25 | |
| 26 | void FileInfo::writeFile(const uint8_t* buffer, uint64_t numBytes, uint64_t offset) { |
| 27 | fileSystem->writeFile(*this, buffer, numBytes, offset); |
no outgoing calls
no test coverage detected