blob: ecca688a25fb75977c542f6107e8b11f20345c70 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef PERF_COMPRESS_H
3#define PERF_COMPRESS_H
4
5#ifdef HAVE_ZLIB_SUPPORT
6int gzip_decompress_to_file(const char *input, int output_fd);
7#endif
8
9#ifdef HAVE_LZMA_SUPPORT
10int lzma_decompress_to_file(const char *input, int output_fd);
11#endif
12
13#endif /* PERF_COMPRESS_H */