compress.h 309 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef PERF_COMPRESS_H
  3. #define PERF_COMPRESS_H
  4. #ifdef HAVE_ZLIB_SUPPORT
  5. int gzip_decompress_to_file(const char *input, int output_fd);
  6. #endif
  7. #ifdef HAVE_LZMA_SUPPORT
  8. int lzma_decompress_to_file(const char *input, int output_fd);
  9. #endif
  10. #endif /* PERF_COMPRESS_H */