Linux Perf
compress.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef PERF_COMPRESS_H
3 #define PERF_COMPRESS_H
4 
5 #ifdef HAVE_ZLIB_SUPPORT
6 int gzip_decompress_to_file(const char *input, int output_fd);
7 #endif
8 
9 #ifdef HAVE_LZMA_SUPPORT
10 int lzma_decompress_to_file(const char *input, int output_fd);
11 #endif
12 
13 #endif /* PERF_COMPRESS_H */
static int output_fd
Definition: builtin-stat.c:177
static int input(yyscan_t yyscanner)
int lzma_decompress_to_file(const char *input, int output_fd)
Definition: lzma.c:30
int gzip_decompress_to_file(const char *input, int output_fd)
Definition: zlib.c:16