summaryrefslogtreecommitdiff
path: root/fastjar/zipfile.h
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>2000-12-09 03:08:23 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>2000-12-08 19:08:23 -0800
commitbd8757b313518d151d28fff18f4d7958b5cb7ba3 (patch)
tree87ea917f50267296afe6acf62ccf01cba566fa09 /fastjar/zipfile.h
parent81522a1f8693a519afc801ca60cb390320791e5f (diff)
downloadgcc-bd8757b313518d151d28fff18f4d7958b5cb7ba3.tar.gz
fastjar: Imported.
2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com> * fastjar: Imported. From-SVN: r38145
Diffstat (limited to 'fastjar/zipfile.h')
-rw-r--r--fastjar/zipfile.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/fastjar/zipfile.h b/fastjar/zipfile.h
new file mode 100644
index 00000000000..7dc9527e707
--- /dev/null
+++ b/fastjar/zipfile.h
@@ -0,0 +1,74 @@
+/* $Id: zipfile.h,v 1.1.1.1 1999/12/06 03:09:11 toast Exp $
+
+ $Log: zipfile.h,v $
+ Revision 1.1.1.1 1999/12/06 03:09:11 toast
+ initial checkin..
+
+
+
+ Revision 1.6 1999/05/10 08:33:08 burnsbr
+ added UNPACK_UB4 and UNPACK_UB2
+
+ Revision 1.5 1999/04/26 02:36:34 burnsbr
+ added LOC_EXTRA macro
+
+ Revision 1.4 1999/04/23 12:01:19 burnsbr
+ added more defines
+
+
+*/
+
+/*
+ zipfile.h - defines for indexing zipfile headers
+ Copyright (C) 1999 Bryan Burns
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#define LOC_EXTRA 6 /* extra bytes */
+#define LOC_COMP 8 /* compression method */
+#define LOC_MODTIME 10 /* last modification time */
+#define LOC_MODDATE 12 /* last modification date */
+#define LOC_CRC 14 /* CRC */
+#define LOC_CSIZE 18 /* compressed size */
+#define LOC_USIZE 22 /* uncompressed size */
+#define LOC_FNLEN 26 /* filename length */
+#define LOC_EFLEN 28 /* extra-field length */
+
+#define CEN_COMP 10 /* compression method */
+#define CEN_MODTIME 12
+#define CEN_MODDATE 14
+#define CEN_CRC 16
+#define CEN_CSIZE 20
+#define CEN_USIZE 24
+#define CEN_FNLEN 28
+#define CEN_EFLEN 30
+#define CEN_COMLEN 32
+#define CEN_OFFSET 42
+
+
+/* macros */
+#define PACK_UB4(d, o, v) d[o] = (ub1)((v) & 0x000000ff); \
+ d[o + 1] = (ub1)(((v) & 0x0000ff00) >> 8); \
+ d[o + 2] = (ub1)(((v) & 0x00ff0000) >> 16); \
+ d[o + 3] = (ub1)(((v) & 0xff000000) >> 24)
+
+#define PACK_UB2(d, o, v) d[o] = (ub1)((v) & 0x00ff); \
+ d[o + 1] = (ub1)(((v) & 0xff00) >> 8)
+
+#define UNPACK_UB4(s, o) (ub4)s[o] + (((ub4)s[o + 1]) << 8) +\
+ (((ub4)s[o + 2]) << 16) + (((ub4)s[o + 3]) << 24)
+
+#define UNPACK_UB2(s, o) (ub2)s[o] + (((ub2)s[o + 1]) << 8)