bio-velvet_underground 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.travis.yml +13 -0
- data/Gemfile +19 -0
- data/LICENSE.txt +20 -0
- data/README.md +53 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/ext/bioruby.patch +60 -0
- data/ext/mkrf_conf.rb +50 -0
- data/ext/src/Makefile +125 -0
- data/ext/src/src/allocArray.c +305 -0
- data/ext/src/src/allocArray.h +86 -0
- data/ext/src/src/autoOpen.c +107 -0
- data/ext/src/src/autoOpen.h +18 -0
- data/ext/src/src/binarySequences.c +813 -0
- data/ext/src/src/binarySequences.h +125 -0
- data/ext/src/src/concatenatedGraph.c +233 -0
- data/ext/src/src/concatenatedGraph.h +30 -0
- data/ext/src/src/concatenatedPreGraph.c +262 -0
- data/ext/src/src/concatenatedPreGraph.h +29 -0
- data/ext/src/src/correctedGraph.c +2642 -0
- data/ext/src/src/correctedGraph.h +32 -0
- data/ext/src/src/dfib.c +509 -0
- data/ext/src/src/dfib.h +69 -0
- data/ext/src/src/dfibHeap.c +89 -0
- data/ext/src/src/dfibHeap.h +39 -0
- data/ext/src/src/dfibpriv.h +105 -0
- data/ext/src/src/fib.c +628 -0
- data/ext/src/src/fib.h +78 -0
- data/ext/src/src/fibHeap.c +79 -0
- data/ext/src/src/fibHeap.h +41 -0
- data/ext/src/src/fibpriv.h +110 -0
- data/ext/src/src/globals.h +153 -0
- data/ext/src/src/graph.c +3983 -0
- data/ext/src/src/graph.h +233 -0
- data/ext/src/src/graphReConstruction.c +1472 -0
- data/ext/src/src/graphReConstruction.h +30 -0
- data/ext/src/src/graphStats.c +2167 -0
- data/ext/src/src/graphStats.h +72 -0
- data/ext/src/src/kmer.c +652 -0
- data/ext/src/src/kmer.h +73 -0
- data/ext/src/src/kmerOccurenceTable.c +236 -0
- data/ext/src/src/kmerOccurenceTable.h +44 -0
- data/ext/src/src/kseq.h +223 -0
- data/ext/src/src/locallyCorrectedGraph.c +557 -0
- data/ext/src/src/locallyCorrectedGraph.h +40 -0
- data/ext/src/src/passageMarker.c +677 -0
- data/ext/src/src/passageMarker.h +137 -0
- data/ext/src/src/preGraph.c +1717 -0
- data/ext/src/src/preGraph.h +106 -0
- data/ext/src/src/preGraphConstruction.c +990 -0
- data/ext/src/src/preGraphConstruction.h +26 -0
- data/ext/src/src/readCoherentGraph.c +557 -0
- data/ext/src/src/readCoherentGraph.h +30 -0
- data/ext/src/src/readSet.c +1734 -0
- data/ext/src/src/readSet.h +67 -0
- data/ext/src/src/recycleBin.c +199 -0
- data/ext/src/src/recycleBin.h +58 -0
- data/ext/src/src/roadMap.c +342 -0
- data/ext/src/src/roadMap.h +65 -0
- data/ext/src/src/run.c +318 -0
- data/ext/src/src/run.h +52 -0
- data/ext/src/src/run2.c +712 -0
- data/ext/src/src/scaffold.c +1876 -0
- data/ext/src/src/scaffold.h +64 -0
- data/ext/src/src/shortReadPairs.c +1243 -0
- data/ext/src/src/shortReadPairs.h +32 -0
- data/ext/src/src/splay.c +259 -0
- data/ext/src/src/splay.h +43 -0
- data/ext/src/src/splayTable.c +1315 -0
- data/ext/src/src/splayTable.h +31 -0
- data/ext/src/src/tightString.c +362 -0
- data/ext/src/src/tightString.h +82 -0
- data/ext/src/src/utility.c +199 -0
- data/ext/src/src/utility.h +98 -0
- data/ext/src/third-party/zlib-1.2.3/ChangeLog +855 -0
- data/ext/src/third-party/zlib-1.2.3/FAQ +339 -0
- data/ext/src/third-party/zlib-1.2.3/INDEX +51 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile +154 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile.in +154 -0
- data/ext/src/third-party/zlib-1.2.3/README +125 -0
- data/ext/src/third-party/zlib-1.2.3/adler32.c +149 -0
- data/ext/src/third-party/zlib-1.2.3/algorithm.txt +209 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.pup +66 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.sas +65 -0
- data/ext/src/third-party/zlib-1.2.3/as400/bndsrc +132 -0
- data/ext/src/third-party/zlib-1.2.3/as400/compile.clp +123 -0
- data/ext/src/third-party/zlib-1.2.3/as400/readme.txt +111 -0
- data/ext/src/third-party/zlib-1.2.3/as400/zlib.inc +331 -0
- data/ext/src/third-party/zlib-1.2.3/compress.c +79 -0
- data/ext/src/third-party/zlib-1.2.3/configure +459 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/README.contrib +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/buffer_demo.adb +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/mtest.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/read.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/readme.txt +65 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/test.adb +463 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.adb +225 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.ads +114 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.adb +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.ads +450 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.adb +701 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.ads +328 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.gpr +20 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/README.586 +43 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/match.S +364 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/README.686 +34 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/match.S +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/README +4 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.c +444 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.h +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.pk +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.txt +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLib.pas +557 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLibConst.pas +11 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.build +33 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.chm +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.sln +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/LICENSE_1_0.txt +23 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/readme.txt +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/README +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.c +608 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.h +37 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inffix9.h +107 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inflate9.h +47 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.c +323 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffas86.c +1157 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffast.S +1368 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/test.cpp +24 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.cpp +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream.h +307 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream_test.cpp +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/README +35 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/TODO +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/test.cc +50 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.cc +479 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.h +466 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masm686/match.asm +413 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/bld_ml64.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.asm +513 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffas8664.c +186 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.asm +392 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/readme.txt +28 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/bld_ml32.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.asm +972 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32c.c +62 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.asm +1083 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/mkasm.bat +3 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/readme.txt +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ChangeLogUnzip +67 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/Makefile +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/crypt.h +132 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.c +177 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.h +75 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.c +270 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.h +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/miniunz.c +585 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/minizip.c +420 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.c +281 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.c +1598 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.h +354 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.h +235 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/example.pas +599 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibpas.pas +236 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/README +63 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.c +837 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/zeros.raw +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.c +275 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.txt +10 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile +14 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile.msc +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/untgz.c +674 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/readme.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/miniunz.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/minizip.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/testzlib.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibstat.vcproj +246 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.sln +78 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.vcproj +445 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/miniunz.vcproj +566 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/minizip.vcproj +563 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlib.vcproj +948 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlibdll.vcproj +567 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibstat.vcproj +870 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.sln +144 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.vcproj +1219 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.c +423 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.h +441 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.c +1736 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.h +331 -0
- data/ext/src/third-party/zlib-1.2.3/example.c +565 -0
- data/ext/src/third-party/zlib-1.2.3/examples/README.examples +42 -0
- data/ext/src/third-party/zlib-1.2.3/examples/fitblk.c +233 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gun.c +693 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzappend.c +500 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzjoin.c +448 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.c +413 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.h +58 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zlib_how.html +523 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zpipe.c +191 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zran.c +404 -0
- data/ext/src/third-party/zlib-1.2.3/gzio.c +1026 -0
- data/ext/src/third-party/zlib-1.2.3/infback.c +623 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.h +11 -0
- data/ext/src/third-party/zlib-1.2.3/inffixed.h +94 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.c +1368 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.h +115 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.c +329 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/make_vms.com +461 -0
- data/ext/src/third-party/zlib-1.2.3/minigzip.c +322 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.bor +109 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.dj2 +104 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.msc +106 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.tc +94 -0
- data/ext/src/third-party/zlib-1.2.3/old/Makefile.riscos +151 -0
- data/ext/src/third-party/zlib-1.2.3/old/README +3 -0
- data/ext/src/third-party/zlib-1.2.3/old/descrip.mms +48 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/Makefile.os2 +136 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/zlib.def +51 -0
- data/ext/src/third-party/zlib-1.2.3/old/visual-basic.txt +160 -0
- data/ext/src/third-party/zlib-1.2.3/old/zlib.html +971 -0
- data/ext/src/third-party/zlib-1.2.3/projects/README.projects +41 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/README.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/example.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/minigzip.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsp +609 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsw +59 -0
- data/ext/src/third-party/zlib-1.2.3/qnx/package.qpg +141 -0
- data/ext/src/third-party/zlib-1.2.3/trees.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/trees.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/uncompr.c +61 -0
- data/ext/src/third-party/zlib-1.2.3/win32/DLL_FAQ.txt +397 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.bor +107 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.gcc +141 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.msc +126 -0
- data/ext/src/third-party/zlib-1.2.3/win32/VisualC.txt +3 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib.def +60 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib1.rc +39 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.in.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.3 +159 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.h +1357 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.h +269 -0
- data/lib/bio-velvet_underground.rb +12 -0
- data/lib/bio-velvet_underground/external/VERSION +1 -0
- data/lib/bio-velvet_underground/velvet_underground.rb +72 -0
- data/spec/binary_sequence_store_spec.rb +27 -0
- data/spec/data/1/CnyUnifiedSeq +0 -0
- data/spec/spec_helper.rb +31 -0
- metadata +456 -0
@@ -0,0 +1,318 @@
|
|
1
|
+
/* zutil.c -- target dependent utility functions for the compression library
|
2
|
+
* Copyright (C) 1995-2005 Jean-loup Gailly.
|
3
|
+
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* @(#) $Id$ */
|
7
|
+
|
8
|
+
#include "zutil.h"
|
9
|
+
|
10
|
+
#ifndef NO_DUMMY_DECL
|
11
|
+
struct internal_state {int dummy;}; /* for buggy compilers */
|
12
|
+
#endif
|
13
|
+
|
14
|
+
const char * const z_errmsg[10] = {
|
15
|
+
"need dictionary", /* Z_NEED_DICT 2 */
|
16
|
+
"stream end", /* Z_STREAM_END 1 */
|
17
|
+
"", /* Z_OK 0 */
|
18
|
+
"file error", /* Z_ERRNO (-1) */
|
19
|
+
"stream error", /* Z_STREAM_ERROR (-2) */
|
20
|
+
"data error", /* Z_DATA_ERROR (-3) */
|
21
|
+
"insufficient memory", /* Z_MEM_ERROR (-4) */
|
22
|
+
"buffer error", /* Z_BUF_ERROR (-5) */
|
23
|
+
"incompatible version",/* Z_VERSION_ERROR (-6) */
|
24
|
+
""};
|
25
|
+
|
26
|
+
|
27
|
+
const char * ZEXPORT zlibVersion()
|
28
|
+
{
|
29
|
+
return ZLIB_VERSION;
|
30
|
+
}
|
31
|
+
|
32
|
+
uLong ZEXPORT zlibCompileFlags()
|
33
|
+
{
|
34
|
+
uLong flags;
|
35
|
+
|
36
|
+
flags = 0;
|
37
|
+
switch (sizeof(uInt)) {
|
38
|
+
case 2: break;
|
39
|
+
case 4: flags += 1; break;
|
40
|
+
case 8: flags += 2; break;
|
41
|
+
default: flags += 3;
|
42
|
+
}
|
43
|
+
switch (sizeof(uLong)) {
|
44
|
+
case 2: break;
|
45
|
+
case 4: flags += 1 << 2; break;
|
46
|
+
case 8: flags += 2 << 2; break;
|
47
|
+
default: flags += 3 << 2;
|
48
|
+
}
|
49
|
+
switch (sizeof(voidpf)) {
|
50
|
+
case 2: break;
|
51
|
+
case 4: flags += 1 << 4; break;
|
52
|
+
case 8: flags += 2 << 4; break;
|
53
|
+
default: flags += 3 << 4;
|
54
|
+
}
|
55
|
+
switch (sizeof(z_off_t)) {
|
56
|
+
case 2: break;
|
57
|
+
case 4: flags += 1 << 6; break;
|
58
|
+
case 8: flags += 2 << 6; break;
|
59
|
+
default: flags += 3 << 6;
|
60
|
+
}
|
61
|
+
#ifdef DEBUG
|
62
|
+
flags += 1 << 8;
|
63
|
+
#endif
|
64
|
+
#if defined(ASMV) || defined(ASMINF)
|
65
|
+
flags += 1 << 9;
|
66
|
+
#endif
|
67
|
+
#ifdef ZLIB_WINAPI
|
68
|
+
flags += 1 << 10;
|
69
|
+
#endif
|
70
|
+
#ifdef BUILDFIXED
|
71
|
+
flags += 1 << 12;
|
72
|
+
#endif
|
73
|
+
#ifdef DYNAMIC_CRC_TABLE
|
74
|
+
flags += 1 << 13;
|
75
|
+
#endif
|
76
|
+
#ifdef NO_GZCOMPRESS
|
77
|
+
flags += 1L << 16;
|
78
|
+
#endif
|
79
|
+
#ifdef NO_GZIP
|
80
|
+
flags += 1L << 17;
|
81
|
+
#endif
|
82
|
+
#ifdef PKZIP_BUG_WORKAROUND
|
83
|
+
flags += 1L << 20;
|
84
|
+
#endif
|
85
|
+
#ifdef FASTEST
|
86
|
+
flags += 1L << 21;
|
87
|
+
#endif
|
88
|
+
#ifdef STDC
|
89
|
+
# ifdef NO_vsnprintf
|
90
|
+
flags += 1L << 25;
|
91
|
+
# ifdef HAS_vsprintf_void
|
92
|
+
flags += 1L << 26;
|
93
|
+
# endif
|
94
|
+
# else
|
95
|
+
# ifdef HAS_vsnprintf_void
|
96
|
+
flags += 1L << 26;
|
97
|
+
# endif
|
98
|
+
# endif
|
99
|
+
#else
|
100
|
+
flags += 1L << 24;
|
101
|
+
# ifdef NO_snprintf
|
102
|
+
flags += 1L << 25;
|
103
|
+
# ifdef HAS_sprintf_void
|
104
|
+
flags += 1L << 26;
|
105
|
+
# endif
|
106
|
+
# else
|
107
|
+
# ifdef HAS_snprintf_void
|
108
|
+
flags += 1L << 26;
|
109
|
+
# endif
|
110
|
+
# endif
|
111
|
+
#endif
|
112
|
+
return flags;
|
113
|
+
}
|
114
|
+
|
115
|
+
#ifdef DEBUG
|
116
|
+
|
117
|
+
# ifndef verbose
|
118
|
+
# define verbose 0
|
119
|
+
# endif
|
120
|
+
int z_verbose = verbose;
|
121
|
+
|
122
|
+
void z_error (m)
|
123
|
+
char *m;
|
124
|
+
{
|
125
|
+
fprintf(stderr, "%s\n", m);
|
126
|
+
exit(1);
|
127
|
+
}
|
128
|
+
#endif
|
129
|
+
|
130
|
+
/* exported to allow conversion of error code to string for compress() and
|
131
|
+
* uncompress()
|
132
|
+
*/
|
133
|
+
const char * ZEXPORT zError(err)
|
134
|
+
int err;
|
135
|
+
{
|
136
|
+
return ERR_MSG(err);
|
137
|
+
}
|
138
|
+
|
139
|
+
#if defined(_WIN32_WCE)
|
140
|
+
/* The Microsoft C Run-Time Library for Windows CE doesn't have
|
141
|
+
* errno. We define it as a global variable to simplify porting.
|
142
|
+
* Its value is always 0 and should not be used.
|
143
|
+
*/
|
144
|
+
int errno = 0;
|
145
|
+
#endif
|
146
|
+
|
147
|
+
#ifndef HAVE_MEMCPY
|
148
|
+
|
149
|
+
void zmemcpy(dest, source, len)
|
150
|
+
Bytef* dest;
|
151
|
+
const Bytef* source;
|
152
|
+
uInt len;
|
153
|
+
{
|
154
|
+
if (len == 0) return;
|
155
|
+
do {
|
156
|
+
*dest++ = *source++; /* ??? to be unrolled */
|
157
|
+
} while (--len != 0);
|
158
|
+
}
|
159
|
+
|
160
|
+
int zmemcmp(s1, s2, len)
|
161
|
+
const Bytef* s1;
|
162
|
+
const Bytef* s2;
|
163
|
+
uInt len;
|
164
|
+
{
|
165
|
+
uInt j;
|
166
|
+
|
167
|
+
for (j = 0; j < len; j++) {
|
168
|
+
if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1;
|
169
|
+
}
|
170
|
+
return 0;
|
171
|
+
}
|
172
|
+
|
173
|
+
void zmemzero(dest, len)
|
174
|
+
Bytef* dest;
|
175
|
+
uInt len;
|
176
|
+
{
|
177
|
+
if (len == 0) return;
|
178
|
+
do {
|
179
|
+
*dest++ = 0; /* ??? to be unrolled */
|
180
|
+
} while (--len != 0);
|
181
|
+
}
|
182
|
+
#endif
|
183
|
+
|
184
|
+
|
185
|
+
#ifdef SYS16BIT
|
186
|
+
|
187
|
+
#ifdef __TURBOC__
|
188
|
+
/* Turbo C in 16-bit mode */
|
189
|
+
|
190
|
+
# define MY_ZCALLOC
|
191
|
+
|
192
|
+
/* Turbo C malloc() does not allow dynamic allocation of 64K bytes
|
193
|
+
* and farmalloc(64K) returns a pointer with an offset of 8, so we
|
194
|
+
* must fix the pointer. Warning: the pointer must be put back to its
|
195
|
+
* original form in order to free it, use zcfree().
|
196
|
+
*/
|
197
|
+
|
198
|
+
#define MAX_PTR 10
|
199
|
+
/* 10*64K = 640K */
|
200
|
+
|
201
|
+
local int next_ptr = 0;
|
202
|
+
|
203
|
+
typedef struct ptr_table_s {
|
204
|
+
voidpf org_ptr;
|
205
|
+
voidpf new_ptr;
|
206
|
+
} ptr_table;
|
207
|
+
|
208
|
+
local ptr_table table[MAX_PTR];
|
209
|
+
/* This table is used to remember the original form of pointers
|
210
|
+
* to large buffers (64K). Such pointers are normalized with a zero offset.
|
211
|
+
* Since MSDOS is not a preemptive multitasking OS, this table is not
|
212
|
+
* protected from concurrent access. This hack doesn't work anyway on
|
213
|
+
* a protected system like OS/2. Use Microsoft C instead.
|
214
|
+
*/
|
215
|
+
|
216
|
+
voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
|
217
|
+
{
|
218
|
+
voidpf buf = opaque; /* just to make some compilers happy */
|
219
|
+
ulg bsize = (ulg)items*size;
|
220
|
+
|
221
|
+
/* If we allocate less than 65520 bytes, we assume that farmalloc
|
222
|
+
* will return a usable pointer which doesn't have to be normalized.
|
223
|
+
*/
|
224
|
+
if (bsize < 65520L) {
|
225
|
+
buf = farmalloc(bsize);
|
226
|
+
if (*(ush*)&buf != 0) return buf;
|
227
|
+
} else {
|
228
|
+
buf = farmalloc(bsize + 16L);
|
229
|
+
}
|
230
|
+
if (buf == NULL || next_ptr >= MAX_PTR) return NULL;
|
231
|
+
table[next_ptr].org_ptr = buf;
|
232
|
+
|
233
|
+
/* Normalize the pointer to seg:0 */
|
234
|
+
*((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
|
235
|
+
*(ush*)&buf = 0;
|
236
|
+
table[next_ptr++].new_ptr = buf;
|
237
|
+
return buf;
|
238
|
+
}
|
239
|
+
|
240
|
+
void zcfree (voidpf opaque, voidpf ptr)
|
241
|
+
{
|
242
|
+
int n;
|
243
|
+
if (*(ush*)&ptr != 0) { /* object < 64K */
|
244
|
+
farfree(ptr);
|
245
|
+
return;
|
246
|
+
}
|
247
|
+
/* Find the original pointer */
|
248
|
+
for (n = 0; n < next_ptr; n++) {
|
249
|
+
if (ptr != table[n].new_ptr) continue;
|
250
|
+
|
251
|
+
farfree(table[n].org_ptr);
|
252
|
+
while (++n < next_ptr) {
|
253
|
+
table[n-1] = table[n];
|
254
|
+
}
|
255
|
+
next_ptr--;
|
256
|
+
return;
|
257
|
+
}
|
258
|
+
ptr = opaque; /* just to make some compilers happy */
|
259
|
+
Assert(0, "zcfree: ptr not found");
|
260
|
+
}
|
261
|
+
|
262
|
+
#endif /* __TURBOC__ */
|
263
|
+
|
264
|
+
|
265
|
+
#ifdef M_I86
|
266
|
+
/* Microsoft C in 16-bit mode */
|
267
|
+
|
268
|
+
# define MY_ZCALLOC
|
269
|
+
|
270
|
+
#if (!defined(_MSC_VER) || (_MSC_VER <= 600))
|
271
|
+
# define _halloc halloc
|
272
|
+
# define _hfree hfree
|
273
|
+
#endif
|
274
|
+
|
275
|
+
voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
|
276
|
+
{
|
277
|
+
if (opaque) opaque = 0; /* to make compiler happy */
|
278
|
+
return _halloc((long)items, size);
|
279
|
+
}
|
280
|
+
|
281
|
+
void zcfree (voidpf opaque, voidpf ptr)
|
282
|
+
{
|
283
|
+
if (opaque) opaque = 0; /* to make compiler happy */
|
284
|
+
_hfree(ptr);
|
285
|
+
}
|
286
|
+
|
287
|
+
#endif /* M_I86 */
|
288
|
+
|
289
|
+
#endif /* SYS16BIT */
|
290
|
+
|
291
|
+
|
292
|
+
#ifndef MY_ZCALLOC /* Any system without a special alloc function */
|
293
|
+
|
294
|
+
#ifndef STDC
|
295
|
+
extern voidp malloc OF((uInt size));
|
296
|
+
extern voidp calloc OF((uInt items, uInt size));
|
297
|
+
extern void free OF((voidpf ptr));
|
298
|
+
#endif
|
299
|
+
|
300
|
+
voidpf zcalloc (opaque, items, size)
|
301
|
+
voidpf opaque;
|
302
|
+
unsigned items;
|
303
|
+
unsigned size;
|
304
|
+
{
|
305
|
+
if (opaque) items += size - size; /* make compiler happy */
|
306
|
+
return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
307
|
+
(voidpf)calloc(items, size);
|
308
|
+
}
|
309
|
+
|
310
|
+
void zcfree (opaque, ptr)
|
311
|
+
voidpf opaque;
|
312
|
+
voidpf ptr;
|
313
|
+
{
|
314
|
+
free(ptr);
|
315
|
+
if (opaque) return; /* make compiler happy */
|
316
|
+
}
|
317
|
+
|
318
|
+
#endif /* MY_ZCALLOC */
|
@@ -0,0 +1,269 @@
|
|
1
|
+
/* zutil.h -- internal interface and configuration of the compression library
|
2
|
+
* Copyright (C) 1995-2005 Jean-loup Gailly.
|
3
|
+
* For conditions of distribution and use, see copyright notice in zlib.h
|
4
|
+
*/
|
5
|
+
|
6
|
+
/* WARNING: this file should *not* be used by applications. It is
|
7
|
+
part of the implementation of the compression library and is
|
8
|
+
subject to change. Applications should only use zlib.h.
|
9
|
+
*/
|
10
|
+
|
11
|
+
/* @(#) $Id$ */
|
12
|
+
|
13
|
+
#ifndef ZUTIL_H
|
14
|
+
#define ZUTIL_H
|
15
|
+
|
16
|
+
#define ZLIB_INTERNAL
|
17
|
+
#include "zlib.h"
|
18
|
+
|
19
|
+
#ifdef STDC
|
20
|
+
# ifndef _WIN32_WCE
|
21
|
+
# include <stddef.h>
|
22
|
+
# endif
|
23
|
+
# include <string.h>
|
24
|
+
# include <stdlib.h>
|
25
|
+
#endif
|
26
|
+
#ifdef NO_ERRNO_H
|
27
|
+
# ifdef _WIN32_WCE
|
28
|
+
/* The Microsoft C Run-Time Library for Windows CE doesn't have
|
29
|
+
* errno. We define it as a global variable to simplify porting.
|
30
|
+
* Its value is always 0 and should not be used. We rename it to
|
31
|
+
* avoid conflict with other libraries that use the same workaround.
|
32
|
+
*/
|
33
|
+
# define errno z_errno
|
34
|
+
# endif
|
35
|
+
extern int errno;
|
36
|
+
#else
|
37
|
+
# ifndef _WIN32_WCE
|
38
|
+
# include <errno.h>
|
39
|
+
# endif
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#ifndef local
|
43
|
+
# define local static
|
44
|
+
#endif
|
45
|
+
/* compile with -Dlocal if your debugger can't find static symbols */
|
46
|
+
|
47
|
+
typedef unsigned char uch;
|
48
|
+
typedef uch FAR uchf;
|
49
|
+
typedef unsigned short ush;
|
50
|
+
typedef ush FAR ushf;
|
51
|
+
typedef unsigned long ulg;
|
52
|
+
|
53
|
+
extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
|
54
|
+
/* (size given to avoid silly warnings with Visual C++) */
|
55
|
+
|
56
|
+
#define ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)]
|
57
|
+
|
58
|
+
#define ERR_RETURN(strm,err) \
|
59
|
+
return (strm->msg = (char*)ERR_MSG(err), (err))
|
60
|
+
/* To be used only when the state is known to be valid */
|
61
|
+
|
62
|
+
/* common constants */
|
63
|
+
|
64
|
+
#ifndef DEF_WBITS
|
65
|
+
# define DEF_WBITS MAX_WBITS
|
66
|
+
#endif
|
67
|
+
/* default windowBits for decompression. MAX_WBITS is for compression only */
|
68
|
+
|
69
|
+
#if MAX_MEM_LEVEL >= 8
|
70
|
+
# define DEF_MEM_LEVEL 8
|
71
|
+
#else
|
72
|
+
# define DEF_MEM_LEVEL MAX_MEM_LEVEL
|
73
|
+
#endif
|
74
|
+
/* default memLevel */
|
75
|
+
|
76
|
+
#define STORED_BLOCK 0
|
77
|
+
#define STATIC_TREES 1
|
78
|
+
#define DYN_TREES 2
|
79
|
+
/* The three kinds of block type */
|
80
|
+
|
81
|
+
#define MIN_MATCH 3
|
82
|
+
#define MAX_MATCH 258
|
83
|
+
/* The minimum and maximum match lengths */
|
84
|
+
|
85
|
+
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
|
86
|
+
|
87
|
+
/* target dependencies */
|
88
|
+
|
89
|
+
#if defined(MSDOS) || (defined(WINDOWS) && !defined(WIN32))
|
90
|
+
# define OS_CODE 0x00
|
91
|
+
# if defined(__TURBOC__) || defined(__BORLANDC__)
|
92
|
+
# if(__STDC__ == 1) && (defined(__LARGE__) || defined(__COMPACT__))
|
93
|
+
/* Allow compilation with ANSI keywords only enabled */
|
94
|
+
void _Cdecl farfree( void *block );
|
95
|
+
void *_Cdecl farmalloc( unsigned long nbytes );
|
96
|
+
# else
|
97
|
+
# include <alloc.h>
|
98
|
+
# endif
|
99
|
+
# else /* MSC or DJGPP */
|
100
|
+
# include <malloc.h>
|
101
|
+
# endif
|
102
|
+
#endif
|
103
|
+
|
104
|
+
#ifdef AMIGA
|
105
|
+
# define OS_CODE 0x01
|
106
|
+
#endif
|
107
|
+
|
108
|
+
#if defined(VAXC) || defined(VMS)
|
109
|
+
# define OS_CODE 0x02
|
110
|
+
# define F_OPEN(name, mode) \
|
111
|
+
fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
|
112
|
+
#endif
|
113
|
+
|
114
|
+
#if defined(ATARI) || defined(atarist)
|
115
|
+
# define OS_CODE 0x05
|
116
|
+
#endif
|
117
|
+
|
118
|
+
#ifdef OS2
|
119
|
+
# define OS_CODE 0x06
|
120
|
+
# ifdef M_I86
|
121
|
+
#include <malloc.h>
|
122
|
+
# endif
|
123
|
+
#endif
|
124
|
+
|
125
|
+
#if defined(MACOS) || defined(TARGET_OS_MAC)
|
126
|
+
# define OS_CODE 0x07
|
127
|
+
# if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
|
128
|
+
# include <unix.h> /* for fdopen */
|
129
|
+
# else
|
130
|
+
# ifndef fdopen
|
131
|
+
# define fdopen(fd,mode) NULL /* No fdopen() */
|
132
|
+
# endif
|
133
|
+
# endif
|
134
|
+
#endif
|
135
|
+
|
136
|
+
#ifdef TOPS20
|
137
|
+
# define OS_CODE 0x0a
|
138
|
+
#endif
|
139
|
+
|
140
|
+
#ifdef WIN32
|
141
|
+
# ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */
|
142
|
+
# define OS_CODE 0x0b
|
143
|
+
# endif
|
144
|
+
#endif
|
145
|
+
|
146
|
+
#ifdef __50SERIES /* Prime/PRIMOS */
|
147
|
+
# define OS_CODE 0x0f
|
148
|
+
#endif
|
149
|
+
|
150
|
+
#if defined(_BEOS_) || defined(RISCOS)
|
151
|
+
# define fdopen(fd,mode) NULL /* No fdopen() */
|
152
|
+
#endif
|
153
|
+
|
154
|
+
#if (defined(_MSC_VER) && (_MSC_VER > 600))
|
155
|
+
# if defined(_WIN32_WCE)
|
156
|
+
# define fdopen(fd,mode) NULL /* No fdopen() */
|
157
|
+
# ifndef _PTRDIFF_T_DEFINED
|
158
|
+
typedef int ptrdiff_t;
|
159
|
+
# define _PTRDIFF_T_DEFINED
|
160
|
+
# endif
|
161
|
+
# else
|
162
|
+
# define fdopen(fd,type) _fdopen(fd,type)
|
163
|
+
# endif
|
164
|
+
#endif
|
165
|
+
|
166
|
+
/* common defaults */
|
167
|
+
|
168
|
+
#ifndef OS_CODE
|
169
|
+
# define OS_CODE 0x03 /* assume Unix */
|
170
|
+
#endif
|
171
|
+
|
172
|
+
#ifndef F_OPEN
|
173
|
+
# define F_OPEN(name, mode) fopen((name), (mode))
|
174
|
+
#endif
|
175
|
+
|
176
|
+
/* functions */
|
177
|
+
|
178
|
+
#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
|
179
|
+
# ifndef HAVE_VSNPRINTF
|
180
|
+
# define HAVE_VSNPRINTF
|
181
|
+
# endif
|
182
|
+
#endif
|
183
|
+
#if defined(__CYGWIN__)
|
184
|
+
# ifndef HAVE_VSNPRINTF
|
185
|
+
# define HAVE_VSNPRINTF
|
186
|
+
# endif
|
187
|
+
#endif
|
188
|
+
#ifndef HAVE_VSNPRINTF
|
189
|
+
# ifdef MSDOS
|
190
|
+
/* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
|
191
|
+
but for now we just assume it doesn't. */
|
192
|
+
# define NO_vsnprintf
|
193
|
+
# endif
|
194
|
+
# ifdef __TURBOC__
|
195
|
+
# define NO_vsnprintf
|
196
|
+
# endif
|
197
|
+
# ifdef WIN32
|
198
|
+
/* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
|
199
|
+
# if !defined(vsnprintf) && !defined(NO_vsnprintf)
|
200
|
+
# define vsnprintf _vsnprintf
|
201
|
+
# endif
|
202
|
+
# endif
|
203
|
+
# ifdef __SASC
|
204
|
+
# define NO_vsnprintf
|
205
|
+
# endif
|
206
|
+
#endif
|
207
|
+
#ifdef VMS
|
208
|
+
# define NO_vsnprintf
|
209
|
+
#endif
|
210
|
+
|
211
|
+
#if defined(pyr)
|
212
|
+
# define NO_MEMCPY
|
213
|
+
#endif
|
214
|
+
#if defined(SMALL_MEDIUM) && !defined(_MSC_VER) && !defined(__SC__)
|
215
|
+
/* Use our own functions for small and medium model with MSC <= 5.0.
|
216
|
+
* You may have to use the same strategy for Borland C (untested).
|
217
|
+
* The __SC__ check is for Symantec.
|
218
|
+
*/
|
219
|
+
# define NO_MEMCPY
|
220
|
+
#endif
|
221
|
+
#if defined(STDC) && !defined(HAVE_MEMCPY) && !defined(NO_MEMCPY)
|
222
|
+
# define HAVE_MEMCPY
|
223
|
+
#endif
|
224
|
+
#ifdef HAVE_MEMCPY
|
225
|
+
# ifdef SMALL_MEDIUM /* MSDOS small or medium model */
|
226
|
+
# define zmemcpy _fmemcpy
|
227
|
+
# define zmemcmp _fmemcmp
|
228
|
+
# define zmemzero(dest, len) _fmemset(dest, 0, len)
|
229
|
+
# else
|
230
|
+
# define zmemcpy memcpy
|
231
|
+
# define zmemcmp memcmp
|
232
|
+
# define zmemzero(dest, len) memset(dest, 0, len)
|
233
|
+
# endif
|
234
|
+
#else
|
235
|
+
extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
|
236
|
+
extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
|
237
|
+
extern void zmemzero OF((Bytef* dest, uInt len));
|
238
|
+
#endif
|
239
|
+
|
240
|
+
/* Diagnostic functions */
|
241
|
+
#ifdef DEBUG
|
242
|
+
# include <stdio.h>
|
243
|
+
extern int z_verbose;
|
244
|
+
extern void z_error OF((char *m));
|
245
|
+
# define Assert(cond,msg) {if(!(cond)) z_error(msg);}
|
246
|
+
# define Trace(x) {if (z_verbose>=0) fprintf x ;}
|
247
|
+
# define Tracev(x) {if (z_verbose>0) fprintf x ;}
|
248
|
+
# define Tracevv(x) {if (z_verbose>1) fprintf x ;}
|
249
|
+
# define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
|
250
|
+
# define Tracecv(c,x) {if (z_verbose>1 && (c)) fprintf x ;}
|
251
|
+
#else
|
252
|
+
# define Assert(cond,msg)
|
253
|
+
# define Trace(x)
|
254
|
+
# define Tracev(x)
|
255
|
+
# define Tracevv(x)
|
256
|
+
# define Tracec(c,x)
|
257
|
+
# define Tracecv(c,x)
|
258
|
+
#endif
|
259
|
+
|
260
|
+
|
261
|
+
voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size));
|
262
|
+
void zcfree OF((voidpf opaque, voidpf ptr));
|
263
|
+
|
264
|
+
#define ZALLOC(strm, items, size) \
|
265
|
+
(*((strm)->zalloc))((strm)->opaque, (items), (size))
|
266
|
+
#define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
267
|
+
#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
268
|
+
|
269
|
+
#endif /* ZUTIL_H */
|