| 256 | return input != nullptr; |
| 257 | } |
| 258 | size_t read(void* dst, size_t n) override { return input != nullptr ? fread(dst, 1, n, input) : 0; } |
| 259 | void close() override |
| 260 | { |
| 261 | if (input != nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected