summaryrefslogtreecommitdiffstats
path: root/src/bin/pg_dump/compress_none.h
blob: 143e599819dd909378637da03b0cb5652a01b8ec (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_none.h
 *	 Uncompressed 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_none.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef _COMPRESS_NONE_H_
#define _COMPRESS_NONE_H_

#include "compress_io.h"

extern void InitCompressorNone(CompressorState *cs,
							   const pg_compress_specification compression_spec);
extern void InitCompressFileHandleNone(CompressFileHandle *CFH,
									   const pg_compress_specification compression_spec);

#endif							/* _COMPRESS_NONE_H_ */