gitextract_rftpr6jl/ ├── .cmake-format.yaml ├── .github/ │ └── workflows/ │ ├── c-std.yml │ ├── cmake.yml │ ├── configure.yml │ ├── contribs.yml │ ├── fuzz.yml │ ├── msys-cygwin.yml │ └── others.yml ├── .gitignore ├── BUILD.bazel ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── LICENSE ├── MODULE.bazel ├── Makefile.in ├── README ├── README-cmake.md ├── adler32.c ├── amiga/ │ ├── Makefile.pup │ └── Makefile.sas ├── compress.c ├── configure ├── contrib/ │ ├── CMakeLists.txt │ ├── README.contrib │ ├── ada/ │ │ ├── CMakeLists.txt │ │ ├── buffer_demo.adb │ │ ├── cmake/ │ │ │ ├── Modules/ │ │ │ │ ├── CMakeADACompiler.cmake.in │ │ │ │ ├── CMakeADAInformation.cmake │ │ │ │ ├── CMakeDetermineADACompiler.cmake │ │ │ │ └── CMakeTestADACompiler.cmake │ │ │ ├── binder_helper.cmake │ │ │ ├── compile_helper.cmake │ │ │ ├── exe_link_helper.cmake │ │ │ ├── shared_link_helper.cmake │ │ │ └── static_link_helper.cmake │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── blast/ │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README │ │ ├── blast-test.c │ │ ├── blast.c │ │ ├── blast.h │ │ ├── blastConfig.cmake.in │ │ ├── test/ │ │ │ ├── CMakeLists.txt │ │ │ ├── add_subdirectory_exclude_test.cmake.in │ │ │ ├── add_subdirectory_test.cmake.in │ │ │ ├── find_package_no_components_test.cmake.in │ │ │ ├── find_package_test.cmake.in │ │ │ └── find_package_wrong_components_test.cmake.in │ │ ├── test.pk │ │ ├── test.txt │ │ └── tester.cmake │ ├── crc32vx/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── crc32_vx.c │ │ └── crc32_vx_hooks.h │ ├── delphi/ │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib/ │ │ ├── DotZLib/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64/ │ │ ├── CMakeLists.txt │ │ └── gvmat64.S │ ├── infback9/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── iostream/ │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2/ │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── TODO │ │ ├── iostream3Config.cmake.in │ │ ├── test/ │ │ │ ├── CMakeLists.txt │ │ │ ├── add_subdirectory_exclude_test.cmake.in │ │ │ ├── add_subdirectory_test.cmake.in │ │ │ ├── find_package_no_components_test.cmake.in │ │ │ ├── find_package_test.cmake.in │ │ │ └── find_package_wrong_components_test.cmake.in │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── minizip/ │ │ ├── CMakeLists.txt │ │ ├── LICENSE.Info-Zip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ints.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── minizip.pc.txt │ │ ├── minizipConfig.cmake.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── skipset.h │ │ ├── test/ │ │ │ ├── CMakeLists.txt │ │ │ ├── add_subdirectory_exclude_test.cmake.in │ │ │ ├── add_subdirectory_test.cmake.in │ │ │ ├── find_package_no_components_test.cmake.in │ │ │ ├── find_package_test.cmake.in │ │ │ ├── find_package_wrong_components_test.cmake.in │ │ │ └── test_helper.cm │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── nuget/ │ │ ├── nuget.csproj │ │ └── nuget.sln │ ├── pascal/ │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff/ │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README │ │ ├── bin-writer.c │ │ ├── puff.c │ │ ├── puff.h │ │ ├── puffConfig.cmake.in │ │ ├── pufftest.c │ │ ├── test/ │ │ │ ├── CMakeLists.txt │ │ │ ├── add_subdirectory_exclude_test.cmake.in │ │ │ ├── add_subdirectory_test.cmake.in │ │ │ ├── find_package_no_components_test.cmake.in │ │ │ ├── find_package_test.cmake.in │ │ │ ├── find_package_wrong_components_test.cmake.in │ │ │ ├── tester-cov.cmake │ │ │ └── tester.cmake │ │ └── zeros.raw │ ├── testzlib/ │ │ ├── CMakeLists.txt │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── vstudio/ │ │ └── readme.txt │ └── zlib1-dll/ │ ├── CMakeLists.txt │ └── readme.txt ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc/ │ ├── algorithm.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt ├── examples/ │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── gznorm.c │ ├── zlib_how.html │ ├── zpipe.c │ ├── zran.c │ └── zran.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── msdos/ │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc ├── os400/ │ ├── README400 │ ├── bndsrc │ ├── make.sh │ ├── zlibfixed.rpgle │ └── zlibfree.rpgle ├── qnx/ │ └── package.qpg ├── test/ │ ├── CMakeLists.txt │ ├── add_subdirectory_exclude_test.cmake.in │ ├── add_subdirectory_test.cmake.in │ ├── example.c │ ├── find_package_no_components_test.cmake.in │ ├── find_package_test.cmake.in │ ├── find_package_wrong_components_test.cmake.in │ ├── infcover.c │ └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom/ │ ├── watcom_f.mak │ └── watcom_l.mak ├── win32/ │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc ├── zconf.h.in ├── zlib.3 ├── zlib.h ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlibConfig.cmake.in ├── zutil.c └── zutil.h