summaryrefslogtreecommitdiffstats
path: root/src/bin/pg_dump/compress_lz4.h
blob: 40dbe00d4610257cdb0f86c19fe4c0c6266b571d (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
/*-------------------------------------------------------------------------
 *
 * compress_lz4.h
 *	 LZ4 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_lz4.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef _COMPRESS_LZ4_H_
#define _COMPRESS_LZ4_H_

#include "compress_io.h"

extern void InitCompressorLZ4(CompressorState *cs,
							  const pg_compress_specification compression_spec);
extern void InitCompressFileHandleLZ4(CompressFileHandle *CFH,
									  const pg_compress_specification compression_spec);

#endif							/* _COMPRESS_LZ4_H_ */