Move routines to manipulate WAL into PostgreSQL::Test::Cluster
[pgsql.git] / src / bin / pg_dump / compress_gzip.h
blob3bef0d5b1b802f2a90dd0b3f2bea75b47c0436cd
1 /*-------------------------------------------------------------------------
3 * compress_gzip.h
4 * GZIP interface to compress_io.c routines
6 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * IDENTIFICATION
10 * src/bin/pg_dump/compress_gzip.h
12 *-------------------------------------------------------------------------
14 #ifndef _COMPRESS_GZIP_H_
15 #define _COMPRESS_GZIP_H_
17 #include "compress_io.h"
19 extern void InitCompressorGzip(CompressorState *cs,
20 const pg_compress_specification compression_spec);
21 extern void InitCompressFileHandleGzip(CompressFileHandle *CFH,
22 const pg_compress_specification compression_spec);
24 #endif /* _COMPRESS_GZIP_H_ */