| 46 | String HalStorage::readFile(const char* path) { HAL_STORAGE_WRAPPED_CALL(readFile, path); } |
| 47 | |
| 48 | bool HalStorage::readFileToStream(const char* path, Print& out, size_t chunkSize) { |
| 49 | HAL_STORAGE_WRAPPED_CALL(readFileToStream, path, out, chunkSize); |
| 50 | } |
| 51 | |
| 52 | size_t HalStorage::readFileToBuffer(const char* path, char* buffer, size_t bufferSize, size_t maxBytes) { |
| 53 | HAL_STORAGE_WRAPPED_CALL(readFileToBuffer, path, buffer, bufferSize, maxBytes); |
no outgoing calls
no test coverage detected