From 15431d4fd8de67a03af4ee9cc8e774e1750e9da2 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 14 Sep 2020 20:25:10 +0200 Subject: Add zstd stream compressor implementation to libfstream Signed-off-by: David Oberhollenzer --- include/fstream.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') 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 -- cgit v1.2.3