xref: /linux/tools/perf/util/compress.h (revision 748e84b79af0121a39eb55f0cb5a727e08eb91b2)
1 #ifndef PERF_COMPRESS_H
2 #define PERF_COMPRESS_H
3 
4 #ifdef HAVE_ZLIB_SUPPORT
5 int gzip_decompress_to_file(const char *input, int output_fd);
6 #endif
7 
8 #ifdef HAVE_LZMA_SUPPORT
9 int lzma_decompress_to_file(const char *input, int output_fd);
10 #endif
11 
12 #endif /* PERF_COMPRESS_H */
13