summaryrefslogtreecommitdiffstats
path: root/src/bin/pg_dump/compress_zstd.h
blob: d0ab1351fdd6db3b924e53356dfecb6bae4198d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*-------------------------------------------------------------------------
 *
 * compress_zstd.h
 *	 Zstd interface to compress_io.c routines
 *
 * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * IDENTIFICATION
 *	   src/bin/pg_dump/compress_zstd.h
 *
 *-------------------------------------------------------------------------
 */

#ifndef COMPRESS_ZSTD_H
#define COMPRESS_ZSTD_H

#include "compress_io.h"

extern void InitCompressorZstd(CompressorState *cs,
							   const pg_compress_specification compression_spec);
extern void InitCompressFileHandleZstd(CompressFileHandle *CFH,
									   const pg_compress_specification compression_spec);

#endif							/* COMPRESS_ZSTD_H */