| 82 | HalFile& HalFile::operator=(HalFile&&) = default; |
| 83 | |
| 84 | HalFile HalStorage::open(const char* path, const oflag_t oflag) { |
| 85 | StorageLock lock; // ensure thread safety for the duration of this function |
| 86 | return HalFile(std::make_unique<HalFile::Impl>(SDCard.open(path, oflag))); |
| 87 | } |
| 88 | |
| 89 | bool HalStorage::mkdir(const char* path, const bool pFlag) { HAL_STORAGE_WRAPPED_CALL(mkdir, path, pFlag); } |
| 90 |
no test coverage detected