| 246 | |
| 247 | template <typename INPUT> |
| 248 | inline bool read_data(INPUT* fp, void* data, size_t length) |
| 249 | { |
| 250 | return read_data_internal(fp, fp, data, length); |
| 251 | } |
| 252 | |
| 253 | template <typename OUTPUT> |
| 254 | inline bool write_data(OUTPUT* fp, const void* data, size_t length) |
no test coverage detected