summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-09-14 20:25:10 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-09-16 09:34:35 +0200
commit15431d4fd8de67a03af4ee9cc8e774e1750e9da2 (patch)
treef5386db24f3901e86d3aaae10042d4f9181a6b32 /include
parent76b06f71078e2eea7def3d1c15cdb103dec785ed (diff)
Add zstd stream compressor implementation to libfstream
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/fstream.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/fstream.h b/include/fstream.h
index c62e5ad..a934c95 100644
--- a/include/fstream.h
+++ b/include/fstream.h
@@ -66,8 +66,10 @@ enum {
FSTREAM_COMPRESSOR_XZ = 2,
+ FSTREAM_COMPRESSOR_ZSTD = 3,
+
FSTREAM_COMPRESSOR_MIN = 1,
- FSTREAM_COMPRESSOR_MAX = 2,
+ FSTREAM_COMPRESSOR_MAX = 3,
};
#ifdef __cplusplus