| 40 | #endif |
| 41 | |
| 42 | static inline char *read_bytes(reader_t *reader, size_t size) { |
| 43 | char *start = NULL; |
| 44 | #ifdef SUPPORT_ZSTD_TRACE |
| 45 | if (reader->is_zstd_file) { |
| 46 | start = _read_bytes_zstd(reader, size); |
| 47 | } else |
| 48 | #endif |
| 49 | { |
| 50 | start = _read_bytes(reader, size); |
| 51 | } |
| 52 | return start; |
| 53 | } |
| 54 | |
| 55 | #ifdef __cplusplus |
| 56 | } |
no test coverage detected