zlib-streams 1.0.1 → 1.0.3

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.
Files changed (47) hide show
  1. package/dist/zlib-streams.wasm +0 -0
  2. package/package.json +1 -1
  3. package/src/inflate9.c +150 -34
  4. package/build/debug/src/inflate9.d +0 -9
  5. package/build/debug/src/inflate9.o +0 -0
  6. package/build/debug/src/zlib/adler32.d +0 -5
  7. package/build/debug/src/zlib/adler32.o +0 -0
  8. package/build/debug/src/zlib/contrib/infback9/infback9.d +0 -13
  9. package/build/debug/src/zlib/contrib/infback9/infback9.o +0 -0
  10. package/build/debug/src/zlib/contrib/infback9/inftree9.d +0 -7
  11. package/build/debug/src/zlib/contrib/infback9/inftree9.o +0 -0
  12. package/build/debug/src/zlib/crc32.d +0 -6
  13. package/build/debug/src/zlib/crc32.o +0 -0
  14. package/build/debug/src/zlib/infback.d +0 -10
  15. package/build/debug/src/zlib/infback.o +0 -0
  16. package/build/debug/src/zlib/inffast.d +0 -9
  17. package/build/debug/src/zlib/inffast.o +0 -0
  18. package/build/debug/src/zlib/inflate.d +0 -10
  19. package/build/debug/src/zlib/inflate.o +0 -0
  20. package/build/debug/src/zlib/inftrees.d +0 -6
  21. package/build/debug/src/zlib/inftrees.o +0 -0
  22. package/build/debug/src/zlib/trees.d +0 -7
  23. package/build/debug/src/zlib/trees.o +0 -0
  24. package/build/debug/src/zlib/zutil.d +0 -6
  25. package/build/debug/src/zlib/zutil.o +0 -0
  26. package/build/src/inflate9.d +0 -9
  27. package/build/src/inflate9.o +0 -0
  28. package/build/src/zlib/adler32.d +0 -5
  29. package/build/src/zlib/adler32.o +0 -0
  30. package/build/src/zlib/contrib/infback9/infback9.d +0 -13
  31. package/build/src/zlib/contrib/infback9/infback9.o +0 -0
  32. package/build/src/zlib/contrib/infback9/inftree9.d +0 -7
  33. package/build/src/zlib/contrib/infback9/inftree9.o +0 -0
  34. package/build/src/zlib/crc32.d +0 -6
  35. package/build/src/zlib/crc32.o +0 -0
  36. package/build/src/zlib/infback.d +0 -10
  37. package/build/src/zlib/infback.o +0 -0
  38. package/build/src/zlib/inffast.d +0 -9
  39. package/build/src/zlib/inffast.o +0 -0
  40. package/build/src/zlib/inflate.d +0 -10
  41. package/build/src/zlib/inflate.o +0 -0
  42. package/build/src/zlib/inftrees.d +0 -6
  43. package/build/src/zlib/inftrees.o +0 -0
  44. package/build/src/zlib/trees.d +0 -7
  45. package/build/src/zlib/trees.o +0 -0
  46. package/build/src/zlib/zutil.d +0 -6
  47. package/build/src/zlib/zutil.o +0 -0
Binary file
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "WASM-based Compression Streams API implementation using zlib, with support for deflate64 decompression.",
4
4
  "author": "Gildas Lormeau",
5
5
  "license": "BSD-3-Clause",
6
- "version": "1.0.1",
6
+ "version": "1.0.3",
7
7
  "type": "module",
8
8
  "keywords": [
9
9
  "deflate",
package/src/inflate9.c CHANGED
@@ -6,9 +6,14 @@
6
6
  #include "zutil.h"
7
7
  #include "inftree9.h"
8
8
  #include "inflate.h"
9
-
10
9
  #include "infback9.h"
11
10
 
11
+ #ifdef MAKEFIXED
12
+ #ifndef BUILDFIXED
13
+ #define BUILDFIXED
14
+ #endif
15
+ #endif
16
+
12
17
  extern int ZEXPORT inflate9Init2_(z_streamp strm, int windowBits,
13
18
  const char *version, int stream_size);
14
19
 
@@ -16,11 +21,6 @@ int ZEXPORT inflate9Init(z_streamp strm) {
16
21
  return inflate9Init2_(strm, 16, ZLIB_VERSION, (int)sizeof(z_stream));
17
22
  }
18
23
 
19
- static unsigned in(void *in_desc, unsigned char FAR **next);
20
-
21
- static const unsigned char order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5,
22
- 11, 4, 12, 3, 13, 2, 14, 1, 15};
23
-
24
24
  local int inflateStateCheck(z_streamp strm) {
25
25
  struct inflate_state FAR *state;
26
26
  if (strm == Z_NULL || strm->zalloc == (alloc_func)0 ||
@@ -88,6 +88,7 @@ int ZEXPORT inflate9Reset2(z_streamp strm, int windowBits) {
88
88
  } else {
89
89
  wrap = (windowBits >> 4) + 5;
90
90
  }
91
+
91
92
  /* set number of window bits, free window if different */
92
93
  if (windowBits && (windowBits < 8 || windowBits > 16))
93
94
  return Z_STREAM_ERROR;
@@ -95,6 +96,7 @@ int ZEXPORT inflate9Reset2(z_streamp strm, int windowBits) {
95
96
  ZFREE(strm, state->window);
96
97
  state->window = Z_NULL;
97
98
  }
99
+
98
100
  /* update state and reset the rest of it */
99
101
  state->wrap = wrap;
100
102
  state->wbits = (unsigned)windowBits;
@@ -134,7 +136,7 @@ int ZEXPORT inflate9Init2_(z_streamp strm, int windowBits, const char *version,
134
136
  strm->state = (struct internal_state FAR *)state;
135
137
  state->strm = strm;
136
138
  state->window = Z_NULL;
137
- state->mode = TYPE;
139
+ state->mode = TYPE; /* to pass state test in inflate9Reset2() */
138
140
  ret = inflate9Reset2(strm, windowBits);
139
141
  if (ret != Z_OK) {
140
142
  ZFREE(strm, state);
@@ -148,24 +150,28 @@ int ZEXPORT inflate9Init_(z_streamp strm, const char *version,
148
150
  return inflate9Init2_(strm, DEF_WBITS, version, stream_size);
149
151
  }
150
152
 
151
- static unsigned in(void *in_desc, unsigned char FAR **next) {
152
- z_stream *strm = (z_stream *)in_desc;
153
-
154
- if (strm == Z_NULL || strm->next_in == Z_NULL || strm->avail_in == 0) {
155
- *next = Z_NULL;
156
- return 0;
157
- }
158
- *next = strm->next_in;
159
- return strm->avail_in;
160
- }
161
-
162
- void fixedtables(struct inflate_state FAR *state) {
153
+ /*
154
+ Return state with length and distance decoding tables and index sizes set to
155
+ fixed code decoding. Normally this returns fixed tables from inffixed.h.
156
+ If BUILDFIXED is defined, then instead this routine builds the tables the
157
+ first time it's called, and returns those tables the first time and
158
+ thereafter. This reduces the size of the code by about 2K bytes, in
159
+ exchange for a little execution time. However, BUILDFIXED should not be
160
+ used for threaded applications, since the rewriting of the tables and virgin
161
+ may not be thread-safe.
162
+ */
163
+ local void fixedtables(struct inflate_state FAR *state) {
164
+ #ifdef BUILDFIXED
163
165
  static int virgin = 1;
164
166
  static code *lenfix, *distfix;
165
167
  static code fixed[544];
168
+
169
+ /* build fixed huffman tables if first call (may not be thread safe) */
166
170
  if (virgin) {
167
171
  unsigned sym, bits;
168
172
  static code *next;
173
+
174
+ /* literal/length table */
169
175
  sym = 0;
170
176
  while (sym < 144)
171
177
  state->lens[sym++] = 8;
@@ -191,12 +197,29 @@ void fixedtables(struct inflate_state FAR *state) {
191
197
  /* do this just once */
192
198
  virgin = 0;
193
199
  }
200
+ #else /* !BUILDFIXED */
201
+ #include "inffixed.h"
202
+ #endif /* BUILDFIXED */
194
203
  state->lencode = lenfix;
195
204
  state->lenbits = 9;
196
205
  state->distcode = distfix;
197
206
  state->distbits = 5;
198
207
  }
199
208
 
209
+ /*
210
+ Update the window with the last wsize (normally 32K) bytes written before
211
+ returning. If window does not exist yet, create it. This is only called
212
+ when a window is already in use, or when output has been written during this
213
+ inflate call, but the end of the deflate stream has not been reached yet.
214
+ It is also called to create a window for dictionary data when a dictionary
215
+ is loaded.
216
+
217
+ Providing output buffers larger than 32K to inflate() should provide a speed
218
+ advantage, since only the last 32K of output is copied to the sliding window
219
+ upon return from inflate(), and since all distances after the first 32K of
220
+ output will fall in the output data, making match copies simpler and faster.
221
+ The advantage may be dependent on the size of the processor's data caches.
222
+ */
200
223
  local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
201
224
  struct inflate_state FAR *state;
202
225
  unsigned dist;
@@ -273,6 +296,8 @@ local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
273
296
  bits = 0; \
274
297
  } while (0)
275
298
 
299
+ /* Get a byte of input into the bit accumulator, or return from inflate()
300
+ if there is no input available. */
276
301
  #define PULLBYTE() \
277
302
  do { \
278
303
  if (have == 0) \
@@ -282,26 +307,113 @@ local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
282
307
  bits += 8; \
283
308
  } while (0)
284
309
 
310
+ /* Assure that there are at least n bits in the bit accumulator. If there is
311
+ not enough available input to do that, then return from inflate(). */
285
312
  #define NEEDBITS(n) \
286
313
  do { \
287
314
  while (bits < (unsigned)(n)) \
288
315
  PULLBYTE(); \
289
316
  } while (0)
290
317
 
318
+ /* Return the low n bits of the bit accumulator (n < 16) */
291
319
  #define BITS(n) ((unsigned)hold & ((1U << (n)) - 1))
292
320
 
321
+ /* Remove n bits from the bit accumulator */
293
322
  #define DROPBITS(n) \
294
323
  do { \
295
324
  hold >>= (n); \
296
325
  bits -= (unsigned)(n); \
297
326
  } while (0)
298
327
 
328
+ /* Remove zero to seven bits as needed to go to a byte boundary */
299
329
  #define BYTEBITS() \
300
330
  do { \
301
331
  hold >>= bits & 7; \
302
332
  bits -= bits & 7; \
303
333
  } while (0)
304
334
 
335
+ /*
336
+ inflate() uses a state machine to process as much input data and generate as
337
+ much output data as possible before returning. The state machine is
338
+ structured roughly as follows:
339
+
340
+ for (;;) switch (state) {
341
+ ...
342
+ case STATEn:
343
+ if (not enough input data or output space to make progress)
344
+ return;
345
+ ... make progress ...
346
+ state = STATEm;
347
+ break;
348
+ ...
349
+ }
350
+
351
+ so when inflate() is called again, the same case is attempted again, and
352
+ if the appropriate resources are provided, the machine proceeds to the
353
+ next state. The NEEDBITS() macro is usually the way the state evaluates
354
+ whether it can proceed or should return. NEEDBITS() does the return if
355
+ the requested bits are not available. The typical use of the BITS macros
356
+ is:
357
+
358
+ NEEDBITS(n);
359
+ ... do something with BITS(n) ...
360
+ DROPBITS(n);
361
+
362
+ where NEEDBITS(n) either returns from inflate() if there isn't enough
363
+ input left to load n bits into the accumulator, or it continues. BITS(n)
364
+ gives the low n bits in the accumulator. When done, DROPBITS(n) drops
365
+ the low n bits off the accumulator. INITBITS() clears the accumulator
366
+ and sets the number of available bits to zero. BYTEBITS() discards just
367
+ enough bits to put the accumulator on a byte boundary. After BYTEBITS()
368
+ and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
369
+
370
+ NEEDBITS(n) uses PULLBYTE() to get an available byte of input, or to return
371
+ if there is no input available. The decoding of variable length codes uses
372
+ PULLBYTE() directly in order to pull just enough bytes to decode the next
373
+ code, and no more.
374
+
375
+ Some states loop until they get enough input, making sure that enough
376
+ state information is maintained to continue the loop where it left off
377
+ if NEEDBITS() returns in the loop. For example, want, need, and keep
378
+ would all have to actually be part of the saved state in case NEEDBITS()
379
+ returns:
380
+
381
+ case STATEw:
382
+ while (want < need) {
383
+ NEEDBITS(n);
384
+ keep[want++] = BITS(n);
385
+ DROPBITS(n);
386
+ }
387
+ state = STATEx;
388
+ case STATEx:
389
+
390
+ As shown above, if the next state is also the next case, then the break
391
+ is omitted.
392
+
393
+ A state may also return if there is not enough output space available to
394
+ complete that state. Those states are copying stored data, writing a
395
+ literal byte, and copying a matching string.
396
+
397
+ When returning, a "goto inf_leave" is used to update the total counters,
398
+ update the check value, and determine whether any progress has been made
399
+ during that inflate() call in order to return the proper return code.
400
+ Progress is defined as a change in either strm->avail_in or strm->avail_out.
401
+ When there is a window, goto inf_leave will update the window with the last
402
+ output written. If a goto inf_leave occurs in the middle of decompression
403
+ and there is no window currently, goto inf_leave will create one and copy
404
+ output to the window for the next call of inflate().
405
+
406
+ In this implementation, the flush parameter of inflate() only affects the
407
+ return code (per zlib.h). inflate() always writes as much as possible to
408
+ strm->next_out, given the space available and the provided input--the effect
409
+ documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
410
+ the allocation of and copying into a sliding window until necessary, which
411
+ provides the effect documented in zlib.h for Z_FINISH when the entire input
412
+ stream available. So the only thing the flush parameter actually does is:
413
+ when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
414
+ will return Z_BUF_ERROR if it has not reached the end of the stream.
415
+ */
416
+
305
417
  int ZEXPORT inflate9(z_streamp strm, int flush) {
306
418
  struct inflate_state FAR *state;
307
419
  z_const unsigned char FAR *next; /* next input */
@@ -371,7 +483,7 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
371
483
  DROPBITS(2);
372
484
  break;
373
485
  case STORED:
374
- BYTEBITS();
486
+ BYTEBITS(); /* go to byte boundary */
375
487
  NEEDBITS(32);
376
488
  if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) {
377
489
  strm->msg = (z_const char *)"invalid stored block lengths";
@@ -416,11 +528,13 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
416
528
  DROPBITS(5);
417
529
  state->ncode = BITS(4) + 4;
418
530
  DROPBITS(4);
531
+ #ifndef PKZIP_BUG_WORKAROUND
419
532
  if (state->nlen > 286) {
420
- strm->msg = (z_const char *)"too many length or distance symbols";
533
+ strm->msg = (z_const char *)"too many length symbols";
421
534
  state->mode = BAD;
422
535
  break;
423
536
  }
537
+ #endif
424
538
  Tracev((stderr, "inflate: table sizes ok\n"));
425
539
  state->have = 0;
426
540
  state->mode = LENLENS;
@@ -504,8 +618,12 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
504
618
  break;
505
619
  }
506
620
 
621
+ /* build code tables -- note: do not change the lenbits or distbits
622
+ values here (9 and 6) without reading the comments in inftrees.h
623
+ concerning the ENOUGH constants, which depend on those values */
507
624
  state->next = state->codes;
508
625
  state->lencode = (const code FAR *)(state->next);
626
+ state->lenbits = 9;
509
627
  ret = inflate_table9(LENS, state->lens, state->nlen, &(state->next),
510
628
  &(state->lenbits), state->work);
511
629
  if (ret) {
@@ -514,6 +632,7 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
514
632
  break;
515
633
  }
516
634
  state->distcode = (const code FAR *)(state->next);
635
+ state->distbits = 6;
517
636
  ret = inflate_table9(DISTS, state->lens + state->nlen, state->ndist,
518
637
  &(state->next), &(state->distbits), state->work);
519
638
  if (ret) {
@@ -623,11 +742,13 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
623
742
  DROPBITS(state->extra);
624
743
  state->back += state->extra;
625
744
  }
745
+ #ifdef INFLATE_STRICT
626
746
  if (state->offset > state->dmax) {
627
747
  strm->msg = (z_const char *)"invalid distance too far back";
628
748
  state->mode = BAD;
629
749
  break;
630
750
  }
751
+ #endif
631
752
  Tracevv((stderr, "inflate: distance %u\n", state->offset));
632
753
  state->mode = MATCH;
633
754
  /* fallthrough */
@@ -644,6 +765,7 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
644
765
  break;
645
766
  }
646
767
  #ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
768
+ Trace((stderr, "inflate.c too far\n"));
647
769
  copy -= state->whave;
648
770
  if (copy > state->length)
649
771
  copy = state->length;
@@ -697,8 +819,13 @@ int ZEXPORT inflate9(z_streamp strm, int flush) {
697
819
  return Z_STREAM_ERROR;
698
820
  }
699
821
 
822
+ /*
823
+ Return from inflate9(), updating the total counts and the check value.
824
+ If there was no progress during the inflate9() call, return a buffer
825
+ error. Call updatewindow() to create and/or update the window state.
826
+ Note: a memory error from inflate9() is non-recoverable.
827
+ */
700
828
  inf_leave:
701
- state->hold = hold;
702
829
  RESTORE();
703
830
  if (state->wsize || (out != strm->avail_out && state->mode < BAD &&
704
831
  (state->mode < DONE || flush != Z_FINISH)))
@@ -719,15 +846,4 @@ inf_leave:
719
846
  return ret;
720
847
  }
721
848
 
722
- int ZEXPORT inflate9End(z_streamp strm) {
723
- struct inflate_state FAR *state;
724
- if (inflateStateCheck(strm))
725
- return Z_STREAM_ERROR;
726
- state = (struct inflate_state FAR *)strm->state;
727
- if (state->window != Z_NULL)
728
- ZFREE(strm, state->window);
729
- ZFREE(strm, strm->state);
730
- strm->state = Z_NULL;
731
- Tracev((stderr, "inflate: end\n"));
732
- return Z_OK;
733
- }
849
+ int ZEXPORT inflate9End(z_streamp strm) { return inflateEnd(strm); }
@@ -1,9 +0,0 @@
1
- build/debug/src/inflate9.o: src/inflate9.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/contrib/infback9/inftree9.h \
3
- src/zlib/inflate.h src/zlib/contrib/infback9/infback9.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/contrib/infback9/inftree9.h:
8
- src/zlib/inflate.h:
9
- src/zlib/contrib/infback9/infback9.h:
Binary file
@@ -1,5 +0,0 @@
1
- build/debug/src/zlib/adler32.o: src/zlib/adler32.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
Binary file
@@ -1,13 +0,0 @@
1
- build/debug/src/zlib/contrib/infback9/infback9.o: \
2
- src/zlib/contrib/infback9/infback9.c src/zlib/zutil.h src/zlib/zlib.h \
3
- src/zlib/zconf.h src/zlib/contrib/infback9/infback9.h \
4
- src/zlib/contrib/infback9/inftree9.h \
5
- src/zlib/contrib/infback9/inflate9.h \
6
- src/zlib/contrib/infback9/inffix9.h
7
- src/zlib/zutil.h:
8
- src/zlib/zlib.h:
9
- src/zlib/zconf.h:
10
- src/zlib/contrib/infback9/infback9.h:
11
- src/zlib/contrib/infback9/inftree9.h:
12
- src/zlib/contrib/infback9/inflate9.h:
13
- src/zlib/contrib/infback9/inffix9.h:
@@ -1,7 +0,0 @@
1
- build/debug/src/zlib/contrib/infback9/inftree9.o: \
2
- src/zlib/contrib/infback9/inftree9.c src/zlib/zutil.h src/zlib/zlib.h \
3
- src/zlib/zconf.h src/zlib/contrib/infback9/inftree9.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/contrib/infback9/inftree9.h:
@@ -1,6 +0,0 @@
1
- build/debug/src/zlib/crc32.o: src/zlib/crc32.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/crc32.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
6
- src/zlib/crc32.h:
Binary file
@@ -1,10 +0,0 @@
1
- build/debug/src/zlib/infback.o: src/zlib/infback.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h \
3
- src/zlib/inflate.h src/zlib/inffast.h src/zlib/inffixed.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/inftrees.h:
8
- src/zlib/inflate.h:
9
- src/zlib/inffast.h:
10
- src/zlib/inffixed.h:
Binary file
@@ -1,9 +0,0 @@
1
- build/debug/src/zlib/inffast.o: src/zlib/inffast.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h \
3
- src/zlib/inflate.h src/zlib/inffast.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/inftrees.h:
8
- src/zlib/inflate.h:
9
- src/zlib/inffast.h:
Binary file
@@ -1,10 +0,0 @@
1
- build/debug/src/zlib/inflate.o: src/zlib/inflate.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h \
3
- src/zlib/inflate.h src/zlib/inffast.h src/zlib/inffixed.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/inftrees.h:
8
- src/zlib/inflate.h:
9
- src/zlib/inffast.h:
10
- src/zlib/inffixed.h:
Binary file
@@ -1,6 +0,0 @@
1
- build/debug/src/zlib/inftrees.o: src/zlib/inftrees.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
6
- src/zlib/inftrees.h:
Binary file
@@ -1,7 +0,0 @@
1
- build/debug/src/zlib/trees.o: src/zlib/trees.c src/zlib/deflate.h \
2
- src/zlib/zutil.h src/zlib/zlib.h src/zlib/zconf.h src/zlib/trees.h
3
- src/zlib/deflate.h:
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/trees.h:
Binary file
@@ -1,6 +0,0 @@
1
- build/debug/src/zlib/zutil.o: src/zlib/zutil.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/gzguts.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
6
- src/zlib/gzguts.h:
Binary file
@@ -1,9 +0,0 @@
1
- build/src/inflate9.o: src/inflate9.c src/zlib/zutil.h src/zlib/zlib.h \
2
- src/zlib/zconf.h src/zlib/contrib/infback9/inftree9.h \
3
- src/zlib/inflate.h src/zlib/contrib/infback9/infback9.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/contrib/infback9/inftree9.h:
8
- src/zlib/inflate.h:
9
- src/zlib/contrib/infback9/infback9.h:
Binary file
@@ -1,5 +0,0 @@
1
- build/src/zlib/adler32.o: src/zlib/adler32.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
Binary file
@@ -1,13 +0,0 @@
1
- build/src/zlib/contrib/infback9/infback9.o: \
2
- src/zlib/contrib/infback9/infback9.c src/zlib/zutil.h src/zlib/zlib.h \
3
- src/zlib/zconf.h src/zlib/contrib/infback9/infback9.h \
4
- src/zlib/contrib/infback9/inftree9.h \
5
- src/zlib/contrib/infback9/inflate9.h \
6
- src/zlib/contrib/infback9/inffix9.h
7
- src/zlib/zutil.h:
8
- src/zlib/zlib.h:
9
- src/zlib/zconf.h:
10
- src/zlib/contrib/infback9/infback9.h:
11
- src/zlib/contrib/infback9/inftree9.h:
12
- src/zlib/contrib/infback9/inflate9.h:
13
- src/zlib/contrib/infback9/inffix9.h:
@@ -1,7 +0,0 @@
1
- build/src/zlib/contrib/infback9/inftree9.o: \
2
- src/zlib/contrib/infback9/inftree9.c src/zlib/zutil.h src/zlib/zlib.h \
3
- src/zlib/zconf.h src/zlib/contrib/infback9/inftree9.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/contrib/infback9/inftree9.h:
@@ -1,6 +0,0 @@
1
- build/src/zlib/crc32.o: src/zlib/crc32.c src/zlib/zutil.h src/zlib/zlib.h \
2
- src/zlib/zconf.h src/zlib/crc32.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
6
- src/zlib/crc32.h:
Binary file
@@ -1,10 +0,0 @@
1
- build/src/zlib/infback.o: src/zlib/infback.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h \
3
- src/zlib/inflate.h src/zlib/inffast.h src/zlib/inffixed.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/inftrees.h:
8
- src/zlib/inflate.h:
9
- src/zlib/inffast.h:
10
- src/zlib/inffixed.h:
Binary file
@@ -1,9 +0,0 @@
1
- build/src/zlib/inffast.o: src/zlib/inffast.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h \
3
- src/zlib/inflate.h src/zlib/inffast.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/inftrees.h:
8
- src/zlib/inflate.h:
9
- src/zlib/inffast.h:
Binary file
@@ -1,10 +0,0 @@
1
- build/src/zlib/inflate.o: src/zlib/inflate.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h \
3
- src/zlib/inflate.h src/zlib/inffast.h src/zlib/inffixed.h
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/inftrees.h:
8
- src/zlib/inflate.h:
9
- src/zlib/inffast.h:
10
- src/zlib/inffixed.h:
Binary file
@@ -1,6 +0,0 @@
1
- build/src/zlib/inftrees.o: src/zlib/inftrees.c src/zlib/zutil.h \
2
- src/zlib/zlib.h src/zlib/zconf.h src/zlib/inftrees.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
6
- src/zlib/inftrees.h:
Binary file
@@ -1,7 +0,0 @@
1
- build/src/zlib/trees.o: src/zlib/trees.c src/zlib/deflate.h \
2
- src/zlib/zutil.h src/zlib/zlib.h src/zlib/zconf.h src/zlib/trees.h
3
- src/zlib/deflate.h:
4
- src/zlib/zutil.h:
5
- src/zlib/zlib.h:
6
- src/zlib/zconf.h:
7
- src/zlib/trees.h:
Binary file
@@ -1,6 +0,0 @@
1
- build/src/zlib/zutil.o: src/zlib/zutil.c src/zlib/zutil.h src/zlib/zlib.h \
2
- src/zlib/zconf.h src/zlib/gzguts.h
3
- src/zlib/zutil.h:
4
- src/zlib/zlib.h:
5
- src/zlib/zconf.h:
6
- src/zlib/gzguts.h:
Binary file