summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-09-15 21:13:56 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2020-09-16 09:34:35 +0200
commit183cf393a453cddb689666ce7fb35a97e7f523bf (patch)
tree7f57b466be7fdbe8cae1ad1f5562fa493ad3312b /include
parent15431d4fd8de67a03af4ee9cc8e774e1750e9da2 (diff)
Add bzip2 stream compression support
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 a934c95..8693fff 100644
--- a/include/fstream.h
+++ b/include/fstream.h
@@ -68,8 +68,10 @@ enum {
FSTREAM_COMPRESSOR_ZSTD = 3,
+ FSTREAM_COMPRESSOR_BZIP2 = 4,
+
FSTREAM_COMPRESSOR_MIN = 1,
- FSTREAM_COMPRESSOR_MAX = 3,
+ FSTREAM_COMPRESSOR_MAX = 4,
};
#ifdef __cplusplus