zstdlib 0.14.0-x86-mingw32 → 0.15.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +5 -0
- data/ext/zstdlib_c/extconf.rb +1 -1
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/bits.h +92 -87
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/bitstream.h +26 -29
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/compiler.h +36 -22
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/cpu.h +1 -1
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/debug.h +0 -9
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/error_private.c +1 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/error_private.h +0 -10
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/fse.h +2 -17
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/fse_decompress.c +2 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/huf.h +0 -9
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/mem.h +7 -11
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/pool.h +0 -9
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/portability_macros.h +22 -9
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/threading.h +0 -8
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/xxhash.h +93 -19
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/zstd_deps.h +12 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/zstd_internal.h +1 -69
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/zstd_trace.h +5 -12
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/hist.c +10 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/hist.h +7 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress.c +1057 -367
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_internal.h +227 -125
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_literals.c +1 -1
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_sequences.c +7 -7
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_sequences.h +7 -6
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_superblock.c +17 -17
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_cwksp.h +41 -24
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_double_fast.c +58 -50
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_double_fast.h +4 -12
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_fast.c +91 -74
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_fast.h +4 -12
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_lazy.c +64 -64
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_lazy.h +30 -39
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_ldm.c +48 -33
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_ldm.h +6 -14
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_opt.c +55 -51
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_opt.h +8 -16
- data/ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_preSplit.c +238 -0
- data/ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_preSplit.h +33 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstdmt_compress.c +134 -93
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstdmt_compress.h +4 -15
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/huf_decompress_amd64.S +10 -3
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/zstd_decompress.c +14 -11
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/zstd_decompress_block.c +6 -12
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/zstd_decompress_internal.h +5 -5
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/zdict.h +15 -8
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/zstd.h +241 -132
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/zstd_errors.h +1 -8
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/gzwrite.c +2 -1
- data/lib/2.4/zstdlib_c.so +0 -0
- data/lib/2.5/zstdlib_c.so +0 -0
- data/lib/2.6/zstdlib_c.so +0 -0
- data/lib/2.7/zstdlib_c.so +0 -0
- data/lib/3.0/zstdlib_c.so +0 -0
- data/lib/3.1/zstdlib_c.so +0 -0
- data/lib/3.2/zstdlib_c.so +0 -0
- data/lib/3.3/zstdlib_c.so +0 -0
- data/lib/3.4/zstdlib_c.so +0 -0
- metadata +75 -73
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/allocations.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/debug.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/entropy_common.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/pool.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/threading.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/xxhash.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/common/zstd_common.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/clevels.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/fse_compress.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/huf_compress.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_literals.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_compress_superblock.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/compress/zstd_ldm_geartab.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/huf_decompress.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/zstd_ddict.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/zstd_ddict.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/lib/decompress/zstd_decompress_block.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/gzclose.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/gzcompatibility.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/gzguts.h +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/gzlib.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/gzread.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/zstd_zlibwrapper.c +0 -0
- data/ext/zstdlib_c/{zstd-1.5.6 → zstd-1.5.7}/zlibWrapper/zstd_zlibwrapper.h +5 -5
@@ -15,10 +15,6 @@
|
|
15
15
|
extern "C" {
|
16
16
|
#endif
|
17
17
|
|
18
|
-
/*===== dependency =====*/
|
19
|
-
#include <stddef.h> /* size_t */
|
20
|
-
|
21
|
-
|
22
18
|
/* ===== ZSTDERRORLIB_API : control library symbols visibility ===== */
|
23
19
|
#ifndef ZSTDERRORLIB_VISIBLE
|
24
20
|
/* Backwards compatibility with old macro name */
|
@@ -80,6 +76,7 @@ typedef enum {
|
|
80
76
|
ZSTD_error_tableLog_tooLarge = 44,
|
81
77
|
ZSTD_error_maxSymbolValue_tooLarge = 46,
|
82
78
|
ZSTD_error_maxSymbolValue_tooSmall = 48,
|
79
|
+
ZSTD_error_cannotProduce_uncompressedBlock = 49,
|
83
80
|
ZSTD_error_stabilityCondition_notRespected = 50,
|
84
81
|
ZSTD_error_stage_wrong = 60,
|
85
82
|
ZSTD_error_init_missing = 62,
|
@@ -100,10 +97,6 @@ typedef enum {
|
|
100
97
|
ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */
|
101
98
|
} ZSTD_ErrorCode;
|
102
99
|
|
103
|
-
/*! ZSTD_getErrorCode() :
|
104
|
-
convert a `size_t` function result into a `ZSTD_ErrorCode` enum type,
|
105
|
-
which can be used to compare with enum list published above */
|
106
|
-
ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult);
|
107
100
|
ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */
|
108
101
|
|
109
102
|
|
@@ -64,6 +64,7 @@ local int gz_init(gz_statep state) {
|
|
64
64
|
strm->next_out = state.state->out;
|
65
65
|
state.state->x.next = strm->next_out;
|
66
66
|
}
|
67
|
+
|
67
68
|
return 0;
|
68
69
|
}
|
69
70
|
|
@@ -223,7 +224,7 @@ local z_size_t gz_write(gz_statep state, voidpc buf, z_size_t len) {
|
|
223
224
|
z_size_t n = (unsigned)-1;
|
224
225
|
if (n > len)
|
225
226
|
n = len;
|
226
|
-
state.state->strm.avail_in = (
|
227
|
+
state.state->strm.avail_in = (uInt)n;
|
227
228
|
state.state->x.pos += n;
|
228
229
|
if (gz_comp(state, Z_NO_FLUSH) == -1)
|
229
230
|
return 0;
|
data/lib/2.4/zstdlib_c.so
CHANGED
Binary file
|
data/lib/2.5/zstdlib_c.so
CHANGED
Binary file
|
data/lib/2.6/zstdlib_c.so
CHANGED
Binary file
|
data/lib/2.7/zstdlib_c.so
CHANGED
Binary file
|
data/lib/3.0/zstdlib_c.so
CHANGED
Binary file
|
data/lib/3.1/zstdlib_c.so
CHANGED
Binary file
|
data/lib/3.2/zstdlib_c.so
CHANGED
Binary file
|
data/lib/3.3/zstdlib_c.so
CHANGED
Binary file
|
data/lib/3.4/zstdlib_c.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zstdlib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Oleg A. Khlybov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -132,77 +132,79 @@ files:
|
|
132
132
|
- ext/zstdlib_c/zlib.mk
|
133
133
|
- ext/zstdlib_c/zlibwrapper.mk
|
134
134
|
- ext/zstdlib_c/zlibwrapper/zlibwrapper.c
|
135
|
-
- ext/zstdlib_c/zstd-1.5.
|
136
|
-
- ext/zstdlib_c/zstd-1.5.
|
137
|
-
- ext/zstdlib_c/zstd-1.5.
|
138
|
-
- ext/zstdlib_c/zstd-1.5.
|
139
|
-
- ext/zstdlib_c/zstd-1.5.
|
140
|
-
- ext/zstdlib_c/zstd-1.5.
|
141
|
-
- ext/zstdlib_c/zstd-1.5.
|
142
|
-
- ext/zstdlib_c/zstd-1.5.
|
143
|
-
- ext/zstdlib_c/zstd-1.5.
|
144
|
-
- ext/zstdlib_c/zstd-1.5.
|
145
|
-
- ext/zstdlib_c/zstd-1.5.
|
146
|
-
- ext/zstdlib_c/zstd-1.5.
|
147
|
-
- ext/zstdlib_c/zstd-1.5.
|
148
|
-
- ext/zstdlib_c/zstd-1.5.
|
149
|
-
- ext/zstdlib_c/zstd-1.5.
|
150
|
-
- ext/zstdlib_c/zstd-1.5.
|
151
|
-
- ext/zstdlib_c/zstd-1.5.
|
152
|
-
- ext/zstdlib_c/zstd-1.5.
|
153
|
-
- ext/zstdlib_c/zstd-1.5.
|
154
|
-
- ext/zstdlib_c/zstd-1.5.
|
155
|
-
- ext/zstdlib_c/zstd-1.5.
|
156
|
-
- ext/zstdlib_c/zstd-1.5.
|
157
|
-
- ext/zstdlib_c/zstd-1.5.
|
158
|
-
- ext/zstdlib_c/zstd-1.5.
|
159
|
-
- ext/zstdlib_c/zstd-1.5.
|
160
|
-
- ext/zstdlib_c/zstd-1.5.
|
161
|
-
- ext/zstdlib_c/zstd-1.5.
|
162
|
-
- ext/zstdlib_c/zstd-1.5.
|
163
|
-
- ext/zstdlib_c/zstd-1.5.
|
164
|
-
- ext/zstdlib_c/zstd-1.5.
|
165
|
-
- ext/zstdlib_c/zstd-1.5.
|
166
|
-
- ext/zstdlib_c/zstd-1.5.
|
167
|
-
- ext/zstdlib_c/zstd-1.5.
|
168
|
-
- ext/zstdlib_c/zstd-1.5.
|
169
|
-
- ext/zstdlib_c/zstd-1.5.
|
170
|
-
- ext/zstdlib_c/zstd-1.5.
|
171
|
-
- ext/zstdlib_c/zstd-1.5.
|
172
|
-
- ext/zstdlib_c/zstd-1.5.
|
173
|
-
- ext/zstdlib_c/zstd-1.5.
|
174
|
-
- ext/zstdlib_c/zstd-1.5.
|
175
|
-
- ext/zstdlib_c/zstd-1.5.
|
176
|
-
- ext/zstdlib_c/zstd-1.5.
|
177
|
-
- ext/zstdlib_c/zstd-1.5.
|
178
|
-
- ext/zstdlib_c/zstd-1.5.
|
179
|
-
- ext/zstdlib_c/zstd-1.5.
|
180
|
-
- ext/zstdlib_c/zstd-1.5.
|
181
|
-
- ext/zstdlib_c/zstd-1.5.
|
182
|
-
- ext/zstdlib_c/zstd-1.5.
|
183
|
-
- ext/zstdlib_c/zstd-1.5.
|
184
|
-
- ext/zstdlib_c/zstd-1.5.
|
185
|
-
- ext/zstdlib_c/zstd-1.5.
|
186
|
-
- ext/zstdlib_c/zstd-1.5.
|
187
|
-
- ext/zstdlib_c/zstd-1.5.
|
188
|
-
- ext/zstdlib_c/zstd-1.5.
|
189
|
-
- ext/zstdlib_c/zstd-1.5.
|
190
|
-
- ext/zstdlib_c/zstd-1.5.
|
191
|
-
- ext/zstdlib_c/zstd-1.5.
|
192
|
-
- ext/zstdlib_c/zstd-1.5.
|
193
|
-
- ext/zstdlib_c/zstd-1.5.
|
194
|
-
- ext/zstdlib_c/zstd-1.5.
|
195
|
-
- ext/zstdlib_c/zstd-1.5.
|
196
|
-
- ext/zstdlib_c/zstd-1.5.
|
197
|
-
- ext/zstdlib_c/zstd-1.5.
|
198
|
-
- ext/zstdlib_c/zstd-1.5.
|
199
|
-
- ext/zstdlib_c/zstd-1.5.
|
200
|
-
- ext/zstdlib_c/zstd-1.5.
|
201
|
-
- ext/zstdlib_c/zstd-1.5.
|
202
|
-
- ext/zstdlib_c/zstd-1.5.
|
203
|
-
- ext/zstdlib_c/zstd-1.5.
|
204
|
-
- ext/zstdlib_c/zstd-1.5.
|
205
|
-
- ext/zstdlib_c/zstd-1.5.
|
135
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/allocations.h
|
136
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/bits.h
|
137
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/bitstream.h
|
138
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/compiler.h
|
139
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/cpu.h
|
140
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/debug.c
|
141
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/debug.h
|
142
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/entropy_common.c
|
143
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/error_private.c
|
144
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/error_private.h
|
145
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/fse.h
|
146
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/fse_decompress.c
|
147
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/huf.h
|
148
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/mem.h
|
149
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/pool.c
|
150
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/pool.h
|
151
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/portability_macros.h
|
152
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/threading.c
|
153
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/threading.h
|
154
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/xxhash.c
|
155
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/xxhash.h
|
156
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/zstd_common.c
|
157
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/zstd_deps.h
|
158
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/zstd_internal.h
|
159
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/common/zstd_trace.h
|
160
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/clevels.h
|
161
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/fse_compress.c
|
162
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/hist.c
|
163
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/hist.h
|
164
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/huf_compress.c
|
165
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress.c
|
166
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_internal.h
|
167
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_literals.c
|
168
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_literals.h
|
169
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_sequences.c
|
170
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_sequences.h
|
171
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_superblock.c
|
172
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_compress_superblock.h
|
173
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_cwksp.h
|
174
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_double_fast.c
|
175
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_double_fast.h
|
176
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_fast.c
|
177
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_fast.h
|
178
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_lazy.c
|
179
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_lazy.h
|
180
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_ldm.c
|
181
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_ldm.h
|
182
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_ldm_geartab.h
|
183
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_opt.c
|
184
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_opt.h
|
185
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_preSplit.c
|
186
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstd_preSplit.h
|
187
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstdmt_compress.c
|
188
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/compress/zstdmt_compress.h
|
189
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/huf_decompress.c
|
190
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/huf_decompress_amd64.S
|
191
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/zstd_ddict.c
|
192
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/zstd_ddict.h
|
193
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/zstd_decompress.c
|
194
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/zstd_decompress_block.c
|
195
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/zstd_decompress_block.h
|
196
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/decompress/zstd_decompress_internal.h
|
197
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/zdict.h
|
198
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/zstd.h
|
199
|
+
- ext/zstdlib_c/zstd-1.5.7/lib/zstd_errors.h
|
200
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/gzclose.c
|
201
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/gzcompatibility.h
|
202
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/gzguts.h
|
203
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/gzlib.c
|
204
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/gzread.c
|
205
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/gzwrite.c
|
206
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/zstd_zlibwrapper.c
|
207
|
+
- ext/zstdlib_c/zstd-1.5.7/zlibWrapper/zstd_zlibwrapper.h
|
206
208
|
- ext/zstdlib_c/zstd.mk
|
207
209
|
- lib/2.4/zstdlib_c.so
|
208
210
|
- lib/2.5/zstdlib_c.so
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -11,11 +11,6 @@
|
|
11
11
|
#ifndef ZSTD_ZLIBWRAPPER_H
|
12
12
|
#define ZSTD_ZLIBWRAPPER_H
|
13
13
|
|
14
|
-
#if defined (__cplusplus)
|
15
|
-
extern "C" {
|
16
|
-
#endif
|
17
|
-
|
18
|
-
|
19
14
|
#define ZLIB_CONST
|
20
15
|
#define Z_PREFIX
|
21
16
|
#define ZLIB_INTERNAL /* disables gz*64 functions but fixes zlib 1.2.4 with Z_PREFIX */
|
@@ -29,6 +24,11 @@ extern "C" {
|
|
29
24
|
#define _Z_OF OF
|
30
25
|
#endif
|
31
26
|
|
27
|
+
|
28
|
+
#if defined (__cplusplus)
|
29
|
+
extern "C" {
|
30
|
+
#endif
|
31
|
+
|
32
32
|
/* returns a string with version of zstd library */
|
33
33
|
const char * zstdVersion(void);
|
34
34
|
|