cosmopolitan/third_party/unzip
2022-06-10 20:25:29 -07:00
..
unix Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
api.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
apihelp.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
consts.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
crc32.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
crc32.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
crypt.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
crypt.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
ebcdic.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
envargs.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
explode.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
extract.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
fileio.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
globals.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
globals.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
inflate.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
inflate.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
LICENSE Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
list.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
match.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
process.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
README.cosmo Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
timezone.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
timezone.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
ttyio.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
ttyio.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
ubz2err.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unix.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unreduce.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unshrink.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unxcfg.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unzip.c Fix build error in MODE=dbg 2022-06-10 20:25:29 -07:00
unzip.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unzip.mk Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unzip.txt Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unzpriv.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
unzvers.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
zip.h Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
zipinfo.c Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00
zipinfo.txt Add Info-ZIP unzip.com 2022-06-10 05:09:11 -07:00

DESCRIPTION

  The UNIX unzip command, courtesy of the Info-ZIP project.

PROVENANCE

  unzip610b.zip (circa 2010)
  https://sourceforge.net/projects/infozip/files/unreleased%20Betas/UnZip%20betas/

LICENSE

  BSD-like with Apache-like requirement that changes be documented.

LOCAL CHANGES

  The only way this software differs from the normal InfoZIP sources is
  that we're linking the Cosmopolitan C Library, which enables it to be
  built as an Actually Portable Executable.

  Minor changes include:

  - Normalization of header / build config for platform / repository
    sed -i -e '/# *include  *<.*/d'  *.*
    sed -i -e 's!# *include  *"!#include "third_party/unzip/!' *.*
    sed -i -e '1 i\// clang-format off' *.c *.h

  - Fixed a lot of static analysis buffer overflow warnings.