亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? unzip.c

?? Borland C++BuilderT 6 Developer s Guide
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* unzip.c -- IO on .zip files using zlib 
   Version 0.15 beta, Mar 19th, 1998,

   Read unzip.h for more info
*/


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "zlib.h"
#include "unzip.h"

#ifdef STDC
#  include <stddef.h>
#  include <string.h>
#  include <stdlib.h>
#endif
#ifdef NO_ERRNO_H
    extern int errno;
#else
#   include <errno.h>
#endif


#ifndef local
#  define local static
#endif
/* compile with -Dlocal if your debugger can't find static symbols */



#if !defined(unix) && !defined(CASESENSITIVITYDEFAULT_YES) && \
                      !defined(CASESENSITIVITYDEFAULT_NO)
#define CASESENSITIVITYDEFAULT_NO
#endif


#ifndef UNZ_BUFSIZE
#define UNZ_BUFSIZE (16384)
#endif

#ifndef UNZ_MAXFILENAMEINZIP
#define UNZ_MAXFILENAMEINZIP (256)
#endif

#ifndef ALLOC
# define ALLOC(size) (malloc(size))
#endif
#ifndef TRYFREE
# define TRYFREE(p) {if (p) free(p);}
#endif

#define SIZECENTRALDIRITEM (0x2e)
#define SIZEZIPLOCALHEADER (0x1e)


/* I've found an old Unix (a SunOS 4.1.3_U1) without all SEEK_* defined.... */

#ifndef SEEK_CUR
#define SEEK_CUR    1
#endif

#ifndef SEEK_END
#define SEEK_END    2
#endif

#ifndef SEEK_SET
#define SEEK_SET    0
#endif

const char unz_copyright[] =
   " unzip 0.15 Copyright 1998 Gilles Vollant ";

/* unz_file_info_interntal contain internal info about a file in zipfile*/
typedef struct unz_file_info_internal_s
{
    uLong offset_curfile;/* relative offset of local header 4 bytes */
} unz_file_info_internal;


/* file_in_zip_read_info_s contain internal information about a file in zipfile,
    when reading and decompress it */
typedef struct
{
	char  *read_buffer;         /* internal buffer for compressed data */
	z_stream stream;            /* zLib stream structure for inflate */

	uLong pos_in_zipfile;       /* position in byte on the zipfile, for fseek*/
	uLong stream_initialised;   /* flag set if stream structure is initialised*/

	uLong offset_local_extrafield;/* offset of the local extra field */
	uInt  size_local_extrafield;/* size of the local extra field */
	uLong pos_local_extrafield;   /* position in the local extra field in read*/

	uLong crc32;                /* crc32 of all data uncompressed */
	uLong crc32_wait;           /* crc32 we must obtain after decompress all */
	uLong rest_read_compressed; /* number of byte to be decompressed */
	uLong rest_read_uncompressed;/*number of byte to be obtained after decomp*/
	FILE* file;                 /* io structore of the zipfile */
	uLong compression_method;   /* compression method (0==store) */
	uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
} file_in_zip_read_info_s;


/* unz_s contain internal information about the zipfile
*/
typedef struct
{
	FILE* file;                 /* io structore of the zipfile */
	unz_global_info gi;       /* public global information */
	uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
	uLong num_file;             /* number of the current file in the zipfile*/
	uLong pos_in_central_dir;   /* pos of the current file in the central dir*/
	uLong current_file_ok;      /* flag about the usability of the current file*/
	uLong central_pos;          /* position of the beginning of the central dir*/

	uLong size_central_dir;     /* size of the central directory  */
	uLong offset_central_dir;   /* offset of start of central directory with
								   respect to the starting disk number */

	unz_file_info cur_file_info; /* public info about the current file in zip*/
	unz_file_info_internal cur_file_info_internal; /* private info about it*/
    file_in_zip_read_info_s* pfile_in_zip_read; /* structure about the current
	                                    file if we are decompressing it */
} unz_s;


/* ===========================================================================
     Read a byte from a gz_stream; update next_in and avail_in. Return EOF
   for end of file.
   IN assertion: the stream s has been sucessfully opened for reading.
*/


local int unzlocal_getByte(fin,pi)
	FILE *fin;
	int *pi;
{
    unsigned char c;
	int err = fread(&c, 1, 1, fin);
    if (err==1)
    {
        *pi = (int)c;
        return UNZ_OK;
    }
    else
    {
        if (ferror(fin)) 
            return UNZ_ERRNO;
        else
            return UNZ_EOF;
    }
}


/* ===========================================================================
   Reads a long in LSB order from the given gz_stream. Sets 
*/
local int unzlocal_getShort (fin,pX)
	FILE* fin;
    uLong *pX;
{
    uLong x ;
    int i;
    int err;

    err = unzlocal_getByte(fin,&i);
    x = (uLong)i;
    
    if (err==UNZ_OK)
        err = unzlocal_getByte(fin,&i);
    x += ((uLong)i)<<8;
   
    if (err==UNZ_OK)
        *pX = x;
    else
        *pX = 0;
    return err;
}

local int unzlocal_getLong (fin,pX)
	FILE* fin;
    uLong *pX;
{
    uLong x ;
    int i;
    int err;

    err = unzlocal_getByte(fin,&i);
    x = (uLong)i;
    
    if (err==UNZ_OK)
        err = unzlocal_getByte(fin,&i);
    x += ((uLong)i)<<8;

    if (err==UNZ_OK)
        err = unzlocal_getByte(fin,&i);
    x += ((uLong)i)<<16;

    if (err==UNZ_OK)
        err = unzlocal_getByte(fin,&i);
    x += ((uLong)i)<<24;
   
    if (err==UNZ_OK)
        *pX = x;
    else
        *pX = 0;
    return err;
}


/* My own strcmpi / strcasecmp */
local int strcmpcasenosensitive_internal (fileName1,fileName2)
	const char* fileName1;
	const char* fileName2;
{
	for (;;)
	{
		char c1=*(fileName1++);
		char c2=*(fileName2++);
		if ((c1>='a') && (c1<='z'))
			c1 -= 0x20;
		if ((c2>='a') && (c2<='z'))
			c2 -= 0x20;
		if (c1=='\0')
			return ((c2=='\0') ? 0 : -1);
		if (c2=='\0')
			return 1;
		if (c1<c2)
			return -1;
		if (c1>c2)
			return 1;
	}
}


#ifdef  CASESENSITIVITYDEFAULT_NO
#define CASESENSITIVITYDEFAULTVALUE 2
#else
#define CASESENSITIVITYDEFAULTVALUE 1
#endif

#ifndef STRCMPCASENOSENTIVEFUNCTION
#define STRCMPCASENOSENTIVEFUNCTION strcmpcasenosensitive_internal
#endif

/* 
   Compare two filename (fileName1,fileName2).
   If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp)
   If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi
                                                                or strcasecmp)
   If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
        (like 1 on Unix, 2 on Windows)

*/
extern int ZEXPORT unzStringFileNameCompare (fileName1,fileName2,iCaseSensitivity)
	const char* fileName1;
	const char* fileName2;
	int iCaseSensitivity;
{
	if (iCaseSensitivity==0)
		iCaseSensitivity=CASESENSITIVITYDEFAULTVALUE;

	if (iCaseSensitivity==1)
		return strcmp(fileName1,fileName2);

	return STRCMPCASENOSENTIVEFUNCTION(fileName1,fileName2);
} 

#define BUFREADCOMMENT (0x400)

/*
  Locate the Central directory of a zipfile (at the end, just before
    the global comment)
*/
local uLong unzlocal_SearchCentralDir(fin)
	FILE *fin;
{
	unsigned char* buf;
	uLong uSizeFile;
	uLong uBackRead;
	uLong uMaxBack=0xffff; /* maximum size of global comment */
	uLong uPosFound=0;
	
	if (fseek(fin,0,SEEK_END) != 0)
		return 0;


	uSizeFile = ftell( fin );
	
	if (uMaxBack>uSizeFile)
		uMaxBack = uSizeFile;

	buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
	if (buf==NULL)
		return 0;

	uBackRead = 4;
	while (uBackRead<uMaxBack)
	{
		uLong uReadSize,uReadPos ;
		int i;
		if (uBackRead+BUFREADCOMMENT>uMaxBack) 
			uBackRead = uMaxBack;
		else
			uBackRead+=BUFREADCOMMENT;
		uReadPos = uSizeFile-uBackRead ;
		
		uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ? 
                     (BUFREADCOMMENT+4) : (uSizeFile-uReadPos);
		if (fseek(fin,uReadPos,SEEK_SET)!=0)
			break;

		if (fread(buf,(uInt)uReadSize,1,fin)!=1)
			break;

                for (i=(int)uReadSize-3; (i--)>0;)
			if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) && 
				((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
			{
				uPosFound = uReadPos+i;
				break;
			}

		if (uPosFound!=0)
			break;
	}
	TRYFREE(buf);
	return uPosFound;
}

/*
  Open a Zip file. path contain the full pathname (by example,
     on a Windows NT computer "c:\\test\\zlib109.zip" or on an Unix computer
	 "zlib/zlib109.zip".
	 If the zipfile cannot be opened (file don't exist or in not valid), the
	   return value is NULL.
     Else, the return value is a unzFile Handle, usable with other function
	   of this unzip package.
*/
extern unzFile ZEXPORT unzOpen (path)
	const char *path;
{
	unz_s us;
	unz_s *s;
	uLong central_pos,uL;
	FILE * fin ;

	uLong number_disk;          /* number of the current dist, used for 
								   spaning ZIP, unsupported, always 0*/
	uLong number_disk_with_CD;  /* number the the disk with central dir, used
								   for spaning ZIP, unsupported, always 0*/
	uLong number_entry_CD;      /* total number of entries in
	                               the central dir 
	                               (same than number_entry on nospan) */

	int err=UNZ_OK;

    if (unz_copyright[0]!=' ')
        return NULL;

    fin=fopen(path,"rb");
	if (fin==NULL)
		return NULL;

	central_pos = unzlocal_SearchCentralDir(fin);
	if (central_pos==0)
		err=UNZ_ERRNO;

	if (fseek(fin,central_pos,SEEK_SET)!=0)
		err=UNZ_ERRNO;

	/* the signature, already checked */
	if (unzlocal_getLong(fin,&uL)!=UNZ_OK)
		err=UNZ_ERRNO;

	/* number of this disk */
	if (unzlocal_getShort(fin,&number_disk)!=UNZ_OK)
		err=UNZ_ERRNO;

	/* number of the disk with the start of the central directory */
	if (unzlocal_getShort(fin,&number_disk_with_CD)!=UNZ_OK)
		err=UNZ_ERRNO;

	/* total number of entries in the central dir on this disk */
	if (unzlocal_getShort(fin,&us.gi.number_entry)!=UNZ_OK)
		err=UNZ_ERRNO;

	/* total number of entries in the central dir */
	if (unzlocal_getShort(fin,&number_entry_CD)!=UNZ_OK)
		err=UNZ_ERRNO;

	if ((number_entry_CD!=us.gi.number_entry) ||
		(number_disk_with_CD!=0) ||
		(number_disk!=0))
		err=UNZ_BADZIPFILE;

	/* size of the central directory */
	if (unzlocal_getLong(fin,&us.size_central_dir)!=UNZ_OK)
		err=UNZ_ERRNO;

	/* offset of start of central directory with respect to the 
	      starting disk number */
	if (unzlocal_getLong(fin,&us.offset_central_dir)!=UNZ_OK)
		err=UNZ_ERRNO;

	/* zipfile comment length */
	if (unzlocal_getShort(fin,&us.gi.size_comment)!=UNZ_OK)
		err=UNZ_ERRNO;

	if ((central_pos<us.offset_central_dir+us.size_central_dir) && 
		(err==UNZ_OK))
		err=UNZ_BADZIPFILE;

	if (err!=UNZ_OK)
	{
		fclose(fin);
		return NULL;
	}

	us.file=fin;
	us.byte_before_the_zipfile = central_pos -
		                    (us.offset_central_dir+us.size_central_dir);
	us.central_pos = central_pos;
    us.pfile_in_zip_read = NULL;
	

	s=(unz_s*)ALLOC(sizeof(unz_s));
	*s=us;
	unzGoToFirstFile((unzFile)s);	
	return (unzFile)s;	

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人午夜电影网站| 欧美日韩国产成人在线免费| 亚洲综合男人的天堂| 日韩欧美亚洲国产精品字幕久久久| av电影在线不卡| 精品一区二区三区在线观看 | 亚洲视频电影在线| 欧美不卡视频一区| 欧美亚洲另类激情小说| 成人在线视频首页| 久国产精品韩国三级视频| 亚洲图片欧美视频| 国产精品进线69影院| 精品99一区二区| 欧美一区二区精品| 欧美久久久久久久久中文字幕| 波多野结衣91| 国产成人8x视频一区二区 | 亚洲一区二区视频| 国产精品福利av| 国产色产综合产在线视频| 日韩三级在线免费观看| 精品视频123区在线观看| 91蝌蚪国产九色| 99精品久久免费看蜜臀剧情介绍| 国产盗摄女厕一区二区三区| 国产在线日韩欧美| 久久se精品一区精品二区| 免费成人深夜小野草| 男人的天堂久久精品| 日日夜夜一区二区| 亚洲一区二区三区影院| 亚洲免费在线看| 亚洲素人一区二区| 亚洲欧美激情视频在线观看一区二区三区 | 国产精品久久久久天堂| 国产女人18毛片水真多成人如厕| 久久久久久久久久电影| 国产午夜精品在线观看| 欧美精彩视频一区二区三区| 久久精品一区二区三区四区 | 国产专区综合网| 九九国产精品视频| 国产一区高清在线| 国产剧情一区二区| 国产98色在线|日韩| 成人性色生活片| 99久久精品久久久久久清纯| zzijzzij亚洲日本少妇熟睡| 91影院在线观看| 色久优优欧美色久优优| 欧美色爱综合网| 51午夜精品国产| 欧美v亚洲v综合ⅴ国产v| 国产亚洲一区字幕| 国产精品网站在线| 一区二区三区鲁丝不卡| 丝袜美腿亚洲综合| 国产一区二区三区精品视频| 国产成a人亚洲精| 91免费观看在线| 欧美日韩在线亚洲一区蜜芽| 欧美一级黄色录像| 国产精品日日摸夜夜摸av| 亚洲色图清纯唯美| 日韩在线一二三区| 国产电影一区在线| 色婷婷综合在线| 精品毛片乱码1区2区3区| 国产精品视频yy9299一区| 亚洲一区二区欧美日韩| 麻豆精品视频在线观看免费| 成人网男人的天堂| 91精品办公室少妇高潮对白| 欧美一区二区三区在线观看| 国产日韩在线不卡| 亚洲影院免费观看| 国产一区二区视频在线播放| www.欧美色图| 91精品国产综合久久精品性色| 久久一日本道色综合| 亚洲精品国产第一综合99久久| 久久精品国产秦先生| 色综合天天做天天爱| 欧美电视剧免费全集观看| 亚洲欧洲色图综合| 精品一区二区三区在线观看| 91美女片黄在线| 精品国产凹凸成av人导航| 日韩毛片精品高清免费| 国产综合色产在线精品| 欧美色电影在线| 国产精品欧美一区二区三区| 日本aⅴ亚洲精品中文乱码| 91美女视频网站| 久久久精品黄色| 日韩国产在线观看一区| 91丨国产丨九色丨pron| 久久久国产一区二区三区四区小说 | www成人在线观看| 亚洲成av人片在线| 99热这里都是精品| 精品粉嫩aⅴ一区二区三区四区| 亚洲在线视频免费观看| 成人国产精品免费| 久久影院午夜论| 日日噜噜夜夜狠狠视频欧美人| 99国产精品久| 国产亚洲一区字幕| 韩日欧美一区二区三区| 在线不卡一区二区| 亚洲综合清纯丝袜自拍| av福利精品导航| 国产精品久久久久久妇女6080| 韩国av一区二区三区| 日韩丝袜美女视频| 日本一区中文字幕| 欧美日韩国产不卡| 亚洲一区二区三区中文字幕| 色综合久久久久综合体| 亚洲欧洲成人精品av97| 成人a区在线观看| 国产视频一区在线播放| 国内久久婷婷综合| 欧美精品一区二区三区在线| 日本不卡视频在线观看| 日韩一区二区麻豆国产| 午夜精品福利一区二区三区av| 欧美日韩综合一区| 亚洲第一狼人社区| 在线不卡免费欧美| 日本中文字幕一区二区有限公司| 欧美日韩精品一二三区| 婷婷成人综合网| 91精品国产麻豆| 丝袜诱惑制服诱惑色一区在线观看| 欧美人牲a欧美精品| 日韩电影免费在线看| 欧美一区二区三区在线视频| 蜜桃视频在线观看一区| 日韩精品一区二区在线观看| 国产一区二三区| 国产女主播视频一区二区| 成人动漫视频在线| 亚洲精品久久嫩草网站秘色| 日本韩国欧美三级| 日韩影视精彩在线| 精品国产不卡一区二区三区| 国产99精品国产| 亚洲精品伦理在线| 91精品免费在线| 精品制服美女久久| 欧美韩国日本综合| 一本大道久久a久久精二百| 亚洲成人在线免费| 精品日产卡一卡二卡麻豆| 粉嫩一区二区三区性色av| 亚洲色图一区二区| 欧美日本一道本在线视频| 久久91精品国产91久久小草| 久久精品人人做| 91网站视频在线观看| 午夜精品一区二区三区电影天堂| 日韩一区二区精品在线观看| 大陆成人av片| 一个色综合av| 欧美成人video| 不卡av免费在线观看| 亚洲va中文字幕| 国产清纯白嫩初高生在线观看91 | 日韩欧美一区二区三区在线| 国产成人精品免费| 亚洲国产精品久久一线不卡| 26uuu色噜噜精品一区| kk眼镜猥琐国模调教系列一区二区| 一区二区免费在线播放| 日韩免费视频一区| 99国内精品久久| 精品一区在线看| 亚洲午夜视频在线观看| 久久久久久久久久久99999| 在线精品视频免费观看| 国产精品99久久久久久久vr| 一区二区欧美国产| 中文子幕无线码一区tr| 91精品国产综合久久久蜜臀粉嫩| 丁香啪啪综合成人亚洲小说| 午夜精品久久久久久久99水蜜桃 | 精品少妇一区二区三区在线播放| 不卡的av在线播放| 狠狠v欧美v日韩v亚洲ⅴ| 亚洲永久精品国产| 国产精品久久久久久妇女6080 | 一区二区欧美国产| 久久蜜臀精品av| 欧美一卡二卡三卡| 色综合久久综合| 丰满亚洲少妇av| 精品中文字幕一区二区小辣椒| 亚洲国产裸拍裸体视频在线观看乱了|