]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Comment the definitive Zip documentation for future maintainers; note the history...
authorTim Kientzle <kientzle@acm.org>
Sun, 29 Dec 2013 22:26:21 +0000 (14:26 -0800)
committerTim Kientzle <kientzle@acm.org>
Sun, 29 Dec 2013 22:26:21 +0000 (14:26 -0800)
libarchive/archive_read_support_format_zip.c

index 851651b7d010930c8d4c79a5952cbecc49ace26d..447ca947cf032d81c1a5232e3f87f5734a31f500 100644 (file)
 #include "archive_platform.h"
 __FBSDID("$FreeBSD: head/lib/libarchive/archive_read_support_format_zip.c 201102 2009-12-28 03:11:36Z kientzle $");
 
+/*
+ * The definitive documentation of the Zip file format is:
+ *   http://www.pkware.com/documents/casestudies/APPNOTE.TXT
+ *
+ * The Info-Zip project has pioneered various extensions to better
+ * support Zip on Unix, including the 0x5455 "UT", 0x5855 "UX", 0x7855
+ * "Ux", and 0x7875 "ux" extensions for time and ownership
+ * information.
+ *
+ * History of this code: The streaming Zip reader was first added to
+ * libarchive in January 2005.  Support for seekable input sources was
+ * added in Nov 2011.
+ */
+
 #ifdef HAVE_ERRNO_H
 #include <errno.h>
 #endif