Changeset 2119
- Timestamp:
- Jan 19, 2011 8:05:12 AM (2 years ago)
- File:
-
- 1 edited
-
forth/wrapper/zip/inflate.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
forth/wrapper/zip/inflate.c
r2097 r2119 71 71 */ 72 72 73 /* gzip.h -- common declarations for all gzip modules74 * Copyright (C) 1992-1993 Jean-loup Gailly.75 * This is free software; you can redistribute it and/or modify it under the76 * terms of the GNU General Public License, see the file COPYING.77 */78 79 73 #define u_long unsigned long 80 74 #define u_short unsigned short … … 87 81 static int huft_dynamic(); 88 82 89 /* gzip flag byte */ 90 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */ 83 #define FILENAME_PRESENT 0x08 /* flag byte bit meaning filename follows */ 91 84 92 85 /* ROM … … 208 201 for (n = 0; n < 6; ++n) 209 202 (void) NEXTBYTE; 210 if (flags & ORIG_NAME)203 if (flags & FILENAME_PRESENT) 211 204 while (NEXTBYTE) 212 205 ;
Note: See TracChangeset
for help on using the changeset viewer.
