"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "odt2txt-0.4/kunzip/zipfile.h" of archive odt2txt-0.4.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 
    2 #define VERSION "Version v1.06 - November 14, 2006"
    3 #define COPYRIGHT "Copyright 2005-2006 - Michael Kohn <mike@mikekohn.net>"
    4 
    5 struct zip_local_file_header_t {
    6 	unsigned int signature;
    7 	int version;
    8 	int general_purpose_bit_flag;
    9 	int compression_method;
   10 	int last_mod_file_time;
   11 	int last_mod_file_date;
   12 	unsigned int crc_32;
   13 	int compressed_size;
   14 	int uncompressed_size;
   15 	int file_name_length;
   16 	int extra_field_length;
   17 	char *file_name;
   18 	unsigned char *extra_field;
   19 	int descriptor_length;
   20 };