| 252 | |
| 253 | template <typename OUTPUT> |
| 254 | inline bool write_data(OUTPUT* fp, const void* data, size_t length) |
| 255 | { |
| 256 | return write_data_internal(fp, fp, data, length); |
| 257 | } |
| 258 | |
| 259 | // Uses read_data() and write_data() to read/write an integer. |
| 260 | // length is the number of bytes to read/write (which may differ |
no test coverage detected