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

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

?? fileio.c

?? zip壓縮
?? C
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
    }    else if (*pwbuf == '\0') {        r = IZ_PW_CANCELALL;    }    return r;#else /* !CRYPT */    /* tell picky compilers to shut up about "unused variable" warnings */    pG = pG; rcnt = rcnt; pwbuf = pwbuf; size = size; zfn = zfn; efn = efn;    return IZ_PW_ERROR;  /* internal error; function should never get called */#endif /* ?CRYPT */} /* end function UzpPassword() *//**********************//* Function handler() *//**********************/void handler(signal)   /* upon interrupt, turn on echo and exit cleanly */    int signal;{    GETGLOBALS();#if !(defined(SIGBUS) || defined(SIGSEGV))      /* add a newline if not at */    (*G.message)((zvoid *)&G, slide, 0L, 0x41); /*  start of line (to stderr; */#endif                                          /*  slide[] should be safe) */    echon();#ifdef SIGBUS    if (signal == SIGBUS) {        Info(slide, 0x421, ((char *)slide, LoadFarString(ZipfileCorrupt),          "bus error"));        DESTROYGLOBALS();        EXIT(PK_BADERR);    }#endif /* SIGBUS */#ifdef SIGSEGV    if (signal == SIGSEGV) {        Info(slide, 0x421, ((char *)slide, LoadFarString(ZipfileCorrupt),          "segmentation violation"));        DESTROYGLOBALS();        EXIT(PK_BADERR);    }#endif /* SIGSEGV */    /* probably ctrl-C */    DESTROYGLOBALS();#if defined(AMIGA) && defined(__SASC)    _abort();#endif    EXIT(IZ_CTRLC);       /* was EXIT(0), then EXIT(PK_ERR) */}#endif /* !WINDLL */#if (!defined(VMS) && !defined(CMS_MVS))#if (!defined(OS2) || defined(TIMESTAMP))#if (!defined(HAVE_MKTIME) || defined(WIN32))/* also used in amiga/filedate.c and win32/win32.c */ZCONST ush ydays[] =    { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };#endif/*******************************//* Function dos_to_unix_time() */ /* used for freshening/updating/timestamps *//*******************************/time_t dos_to_unix_time(dosdatetime)    ulg dosdatetime;{    time_t m_time;#ifdef HAVE_MKTIME    ZCONST time_t now = time(NULL);    struct tm *tm;#   define YRBASE  1900    tm = localtime(&now);    tm->tm_isdst = -1;          /* let mktime determine if DST is in effect */    /* dissect date */    tm->tm_year = ((int)(dosdatetime >> 25) & 0x7f) + (1980 - YRBASE);    tm->tm_mon  = ((int)(dosdatetime >> 21) & 0x0f) - 1;    tm->tm_mday = ((int)(dosdatetime >> 16) & 0x1f);    /* dissect time */    tm->tm_hour = (int)((unsigned)dosdatetime >> 11) & 0x1f;    tm->tm_min  = (int)((unsigned)dosdatetime >> 5) & 0x3f;    tm->tm_sec  = (int)((unsigned)dosdatetime << 1) & 0x3e;    m_time = mktime(tm);    NATIVE_TO_TIMET(m_time)     /* NOP unless MSC 7.0 or Macintosh */    TTrace((stderr, "  final m_time  =       %lu\n", (ulg)m_time));#else /* !HAVE_MKTIME */    int yr, mo, dy, hh, mm, ss;#ifdef TOPS20#   define YRBASE  1900    struct tmx *tmx;    char temp[20];#else /* !TOPS20 */#   define YRBASE  1970    int leap;    unsigned days;    struct tm *tm;#if (!defined(MACOS) && !defined(RISCOS) && !defined(QDOS) && !defined(TANDEM))#ifdef WIN32    TIME_ZONE_INFORMATION tzinfo;    DWORD res;#else /* ! WIN32 */#ifndef BSD4_4   /* GRR:  change to !defined(MODERN) ? */#if (defined(BSD) || defined(MTS) || defined(__GO32__))    struct timeb tbp;#else /* !(BSD || MTS || __GO32__) */#ifdef DECLARE_TIMEZONE    extern time_t timezone;#endif#endif /* ?(BSD || MTS || __GO32__) */#endif /* !BSD4_4 */#endif /* ?WIN32 */#endif /* !MACOS && !RISCOS && !QDOS && !TANDEM */#endif /* ?TOPS20 */    /* dissect date */    yr = ((int)(dosdatetime >> 25) & 0x7f) + (1980 - YRBASE);    mo = ((int)(dosdatetime >> 21) & 0x0f) - 1;    dy = ((int)(dosdatetime >> 16) & 0x1f) - 1;    /* dissect time */    hh = (int)((unsigned)dosdatetime >> 11) & 0x1f;    mm = (int)((unsigned)dosdatetime >> 5) & 0x3f;    ss = (int)((unsigned)dosdatetime & 0x1f) * 2;#ifdef TOPS20    tmx = (struct tmx *)malloc(sizeof(struct tmx));    sprintf (temp, "%02d/%02d/%02d %02d:%02d:%02d", mo+1, dy+1, yr, hh, mm, ss);    time_parse(temp, tmx, (char *)0);    m_time = time_make(tmx);    free(tmx);#else /* !TOPS20 *//*---------------------------------------------------------------------------    Calculate the number of seconds since the epoch, usually 1 January 1970.  ---------------------------------------------------------------------------*/    /* leap = # of leap yrs from YRBASE up to but not including current year */    leap = ((yr + YRBASE - 1) / 4);   /* leap year base factor */    /* calculate days from BASE to this year and add expired days this year */    days = (yr * 365) + (leap - 492) + ydays[mo];    /* if year is a leap year and month is after February, add another day */    if ((mo > 1) && ((yr+YRBASE)%4 == 0) && ((yr+YRBASE) != 2100))        ++days;                 /* OK through 2199 */    /* convert date & time to seconds relative to 00:00:00, 01/01/YRBASE */    m_time = (time_t)((unsigned long)(days + dy) * 86400L +                      (unsigned long)hh * 3600L +                      (unsigned long)(mm * 60 + ss));      /* - 1;   MS-DOS times always rounded up to nearest even second */    TTrace((stderr, "dos_to_unix_time:\n"));    TTrace((stderr, "  m_time before timezone = %lu\n", (ulg)m_time));/*---------------------------------------------------------------------------    Adjust for local standard timezone offset.  ---------------------------------------------------------------------------*/#if (!defined(MACOS) && !defined(RISCOS) && !defined(QDOS) && !defined(TANDEM))#ifdef WIN32    /* account for timezone differences */    res = GetTimeZoneInformation(&tzinfo);    if (res != TIME_ZONE_ID_INVALID)    {    m_time += 60*(tzinfo.Bias);#else /* !WIN32 */#if (defined(BSD) || defined(MTS) || defined(__GO32__))#ifdef BSD4_4    if ( (dosdatetime >= DOSTIME_2038_01_18) &&         (m_time < (time_t)0x70000000L) )        m_time = U_TIME_T_MAX;  /* saturate in case of (unsigned) overflow */    if (m_time < (time_t)0L)    /* a converted DOS time cannot be negative */        m_time = S_TIME_T_MAX;  /*  -> saturate at max signed time_t value */    if ((tm = localtime(&m_time)) != (struct tm *)NULL)        m_time -= tm->tm_gmtoff;                /* sec. EAST of GMT: subtr. */#else /* !(BSD4_4 */    ftime(&tbp);                                /* get `timezone' */    m_time += tbp.timezone * 60L;               /* seconds WEST of GMT:  add */#endif /* ?(BSD4_4 || __EMX__) */#else /* !(BSD || MTS || __GO32__) */    /* tzset was already called at start of process_zipfiles() */    /* tzset(); */              /* set `timezone' variable */#ifndef __BEOS__                /* BeOS DR8 has no timezones... */    m_time += timezone;         /* seconds WEST of GMT:  add */#endif#endif /* ?(BSD || MTS || __GO32__) */#endif /* ?WIN32 */    TTrace((stderr, "  m_time after timezone =  %lu\n", (ulg)m_time));/*---------------------------------------------------------------------------    Adjust for local daylight savings (summer) time.  ---------------------------------------------------------------------------*/#ifndef BSD4_4  /* (DST already added to tm_gmtoff, so skip tm_isdst) */    if ( (dosdatetime >= DOSTIME_2038_01_18) &&         (m_time < (time_t)0x70000000L) )        m_time = U_TIME_T_MAX;  /* saturate in case of (unsigned) overflow */    if (m_time < (time_t)0L)    /* a converted DOS time cannot be negative */        m_time = S_TIME_T_MAX;  /*  -> saturate at max signed time_t value */    TIMET_TO_NATIVE(m_time)     /* NOP unless MSC 7.0 or Macintosh */    if (((tm = localtime((time_t *)&m_time)) != NULL) && tm->tm_isdst)#ifdef WIN32        m_time += 60L * tzinfo.DaylightBias;    /* adjust with DST bias */    else        m_time += 60L * tzinfo.StandardBias;    /* add StdBias (normally 0) */#else        m_time -= 60L * 60L;    /* adjust for daylight savings time */#endif    NATIVE_TO_TIMET(m_time)     /* NOP unless MSC 7.0 or Macintosh */    TTrace((stderr, "  m_time after DST =       %lu\n", (ulg)m_time));#endif /* !BSD4_4 */#ifdef WIN32    }#endif#endif /* !MACOS && !RISCOS && !QDOS && !TANDEM */#endif /* ?TOPS20 */#endif /* ?HAVE_MKTIME */    if ( (dosdatetime >= DOSTIME_2038_01_18) &&         (m_time < (time_t)0x70000000L) )        m_time = U_TIME_T_MAX;  /* saturate in case of (unsigned) overflow */    if (m_time < (time_t)0L)    /* a converted DOS time cannot be negative */        m_time = S_TIME_T_MAX;  /*  -> saturate at max signed time_t value */    return m_time;} /* end function dos_to_unix_time() */#endif /* !OS2 || TIMESTAMP */#endif /* !VMS && !CMS_MVS */#if (!defined(VMS) && !defined(OS2) && !defined(CMS_MVS))/******************************//* Function check_for_newer() */  /* used for overwriting/freshening/updating *//******************************/int check_for_newer(__G__ filename)  /* return 1 if existing file is newer */    __GDEF                           /*  or equal; 0 if older; -1 if doesn't */    char *filename;                  /*  exist yet */{    time_t existing, archive;#ifdef USE_EF_UT_TIME    iztimes z_utime;#endif#ifdef AOS_VS    long    dyy, dmm, ddd, dhh, dmin, dss;    dyy = (lrec.last_mod_dos_datetime >> 25) + 1980;    dmm = (lrec.last_mod_dos_datetime >> 21) & 0x0f;    ddd = (lrec.last_mod_dos_datetime >> 16) & 0x1f;    dhh = (lrec.last_mod_dos_datetime >> 11) & 0x1f;    dmin = (lrec.last_mod_dos_datetime >> 5) & 0x3f;    dss = (lrec.last_mod_dos_datetime & 0x1f) * 2;    /* under AOS/VS, file times can only be set at creation time,     * with the info in a special DG format.  Make sure we can create     * it here - we delete it later & re-create it, whether or not     * it exists now.     */    if (!zvs_create(filename, (((ulg)dgdate(dmm, ddd, dyy)) << 16) |        (dhh*1800L + dmin*30L + dss/2L), -1L, -1L, (char *) -1, -1, -1, -1))        return DOES_NOT_EXIST;#endif /* AOS_VS */    Trace((stderr, "check_for_newer:  doing stat(%s)\n", FnFilter1(filename)));    if (SSTAT(filename, &G.statbuf)) {        Trace((stderr,          "check_for_newer:  stat(%s) returns %d:  file does not exist\n",          FnFilter1(filename), SSTAT(filename, &G.statbuf)));#ifdef SYMLINKS        Trace((stderr, "check_for_newer:  doing lstat(%s)\n",          FnFilter1(filename)));        /* GRR OPTION:  could instead do this test ONLY if G.symlnk is true */        if (lstat(filename, &G.statbuf) == 0) {            Trace((stderr,              "check_for_newer:  lstat(%s) returns 0:  symlink does exist\n",              FnFilter1(filename)));            if (QCOND2 && !IS_OVERWRT_ALL)                Info(slide, 0, ((char *)slide, LoadFarString(FileIsSymLink),                  FnFilter1(filename), " with no real file"));            return EXISTS_AND_OLDER;   /* symlink dates are meaningless */        }#endif /* SYMLINKS */        return DOES_NOT_EXIST;    }    Trace((stderr, "check_for_newer:  stat(%s) returns 0:  file exists\n",      FnFilter1(filename)));#ifdef SYMLINKS    /* GRR OPTION:  could instead do this test ONLY if G.symlnk is true */    if (lstat(filename, &G.statbuf) == 0 && S_ISLNK(G.statbuf.st_mode)) {        Trace((stderr, "check_for_newer:  %s is a symbolic link\n",          FnFilter1(filename)));        if (QCOND2 && !IS_OVERWRT_ALL)            Info(slide, 0, ((char *)slide, LoadFarString(FileIsSymLink),              FnFilter1(filename), ""));        return EXISTS_AND_OLDER;   /* symlink dates are meaningless */    }#endif /* SYMLINKS */    NATIVE_TO_TIMET(G.statbuf.st_mtime)   /* NOP unless MSC 7.0 or Macintosh */#ifdef USE_EF_UT_TIME    /* The `Unix extra field mtime' should be used for comparison with the     * time stamp of the existing file >>>ONLY<<< when the EF info is also     * used to set the modification time of the extracted file.     */    if (G.extra_field &&#ifdef IZ_CHECK_TZ        G.tz_is_valid &&#endif        (ef_scan_for_izux(G.extra_field, G.lrec.extra_field_length, 0,                          G.lrec.last_mod_dos_datetime, &z_utime, NULL)         & EB_UT_FL_MTIME))    {        TTrace((stderr, "check_for_newer:  using Unix extra field mtime\n"));        existing = G.statbuf.st_mtime;        archive  = z_utime.mtime;    } else {        /* round up existing filetime to nearest 2 seconds for comparison,         * but saturate in case of arithmetic overflow         */        existing = ((G.statbuf.st_mtime & 1) &&                    (G.statbuf.st_mtime + 1 > G.statbuf.st_mtime)) ?                   G.statbuf.st_mtime + 1 : G.statbuf.st_mtime;        archive  = dos_to_unix_time(G.lrec.last_mod_dos_datetime);    }#else /* !USE_EF_UT_TIME */    /* round up existing filetime to nearest 2 seconds for comparison,     * but saturate in case of arithmetic overflow     */    existing = ((G.statbuf.st_mtime & 1) &&                (G.statbuf.st_mtime + 1 > G.statbuf.st_mtime)) ?               G.statbuf.st_mtime + 1 : G.statbuf.st_mtime;    archive  = dos_to_unix_time(G.lrec.last_mod_dos_datetime);#endif /* ?USE_EF_UT_TIME */    TTrace((stderr, "check_for_newer:  existing %lu, archive %lu, e-a %ld\n",      (ulg)existing, (ulg)archive, (long)(existing-archive)));    return (existing >= archive);} /* end function check_for_newer() */#endif /* !VMS && !OS2 && !CMS_MVS *//************************//* Function do_string() *//************************/int do_string(__G__ length, option)   /* return PK-type error code */    __GDEF    unsigned int lengt

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久国际精品| 亚洲少妇30p| 制服丝袜日韩国产| 欧美在线不卡视频| 91麻豆6部合集magnet| 成人不卡免费av| 成人黄色777网| 不卡的av中国片| 成人黄色大片在线观看| 99久久777色| 一本久道久久综合中文字幕| 日本丶国产丶欧美色综合| 91久久免费观看| 欧美男生操女生| 欧美videossexotv100| 久久久另类综合| 亚洲欧洲日产国码二区| 亚洲精品一二三| 亚洲国产毛片aaaaa无费看 | 国产精品电影一区二区| 国产精品久久久久一区| 亚洲黄色av一区| 日韩不卡在线观看日韩不卡视频| 午夜不卡av免费| 狠狠v欧美v日韩v亚洲ⅴ| 精品在线一区二区| 成人永久免费视频| 91丝袜美腿高跟国产极品老师| 欧美系列亚洲系列| 91精品国产综合久久精品麻豆| 精品国内二区三区| 中文字幕第一区第二区| 怡红院av一区二区三区| 欧美aaa在线| 丰满亚洲少妇av| 在线免费观看一区| 日韩你懂的在线观看| 中文一区在线播放| 亚洲国产日韩精品| 国产高清一区日本| 欧美中文字幕一区| 精品国产污网站| 亚洲免费观看高清完整版在线观看| 国产91在线|亚洲| 亚洲欧美一区二区久久 | 成人高清视频免费观看| 在线观看国产一区二区| 欧美草草影院在线视频| 亚洲免费伊人电影| 捆绑紧缚一区二区三区视频| 国产成人aaaa| 欧美中文字幕久久| 国产欧美精品一区二区三区四区| 一区二区三区四区中文字幕| 麻豆精品新av中文字幕| www.亚洲免费av| 欧美一级精品在线| 亚洲视频一区二区在线观看| 六月丁香婷婷色狠狠久久| 成人精品免费网站| 777欧美精品| 中文字幕中文字幕在线一区| 麻豆国产欧美一区二区三区| 不卡视频在线看| 精品99一区二区三区| 亚洲高清视频的网址| 丁香网亚洲国际| 欧美xxx久久| 日本在线不卡视频一二三区| 99精品国产99久久久久久白柏| 精品久久一区二区三区| 亚洲午夜一区二区三区| voyeur盗摄精品| 久久精品亚洲乱码伦伦中文| 日韩精品一二三四| 91小视频在线免费看| 欧美极品少妇xxxxⅹ高跟鞋 | 六月丁香婷婷久久| 欧美日韩中文另类| 日韩一区在线看| 岛国精品在线观看| 精品国产乱子伦一区| 日韩av中文字幕一区二区三区| 色婷婷综合久久久久中文| 中文字幕久久午夜不卡| 激情五月婷婷综合网| 69久久夜色精品国产69蝌蚪网 | 91色九色蝌蚪| 国产欧美va欧美不卡在线| 麻豆国产精品一区二区三区| 欧美高清你懂得| 亚洲国产精品久久不卡毛片| aaa亚洲精品| 日本一区二区综合亚洲| 国产露脸91国语对白| 久久综合狠狠综合久久综合88| 麻豆高清免费国产一区| 5566中文字幕一区二区电影| 午夜精品久久久| 欧美精品久久99| 婷婷成人综合网| 欧美美女bb生活片| 亚洲v日本v欧美v久久精品| 在线观看视频一区| 亚洲精品久久嫩草网站秘色| 色综合久久久久综合| 亚洲精品欧美二区三区中文字幕| 一本色道久久综合亚洲91| 樱桃视频在线观看一区| 欧美在线你懂得| 亚洲va国产天堂va久久en| 欧美日韩国产首页| 日韩av中文在线观看| 日韩亚洲欧美在线| 精品一区二区精品| 国产日韩精品一区二区三区| 国产91在线看| 亚洲美女视频一区| 欧美日韩午夜在线视频| 视频一区二区三区入口| 欧美一激情一区二区三区| 精品在线亚洲视频| 日韩国产一二三区| 欧美一级精品大片| 国产麻豆91精品| 综合久久国产九一剧情麻豆| 91浏览器入口在线观看| 亚洲成人免费视| 精品裸体舞一区二区三区| 国产成a人亚洲| 亚洲精品网站在线观看| 欧美日韩不卡一区二区| 久久疯狂做爰流白浆xx| 国产欧美日韩不卡| 欧美无人高清视频在线观看| 免费成人av在线播放| 中文av一区特黄| 欧美日精品一区视频| 久久99在线观看| 亚洲人成在线观看一区二区| 欧美三级视频在线| 激情亚洲综合在线| 亚洲精品欧美二区三区中文字幕| 欧美一区二区三区人| 国产91清纯白嫩初高中在线观看| 一区二区三区成人| 日韩欧美一区二区不卡| 不卡电影一区二区三区| 日韩精品91亚洲二区在线观看| 国产亚洲污的网站| 欧美综合一区二区三区| 韩国成人福利片在线播放| 亚洲精品一卡二卡| 精品福利av导航| 91成人免费在线| 国产资源在线一区| 亚洲国产乱码最新视频| 日本一区二区久久| 91麻豆精品久久久久蜜臀| 从欧美一区二区三区| 日本欧美在线观看| 亚洲私人影院在线观看| 日韩精品中文字幕在线一区| 91国偷自产一区二区三区观看| 国内不卡的二区三区中文字幕 | 亚洲精品国久久99热| 日韩欧美你懂的| 91蜜桃网址入口| 国产尤物一区二区在线| 五月天视频一区| 综合在线观看色| 26uuu久久天堂性欧美| 欧美日韩午夜精品| 91色婷婷久久久久合中文| 国产精品一线二线三线| 日韩精品1区2区3区| 一区二区三区四区蜜桃| 久久日韩精品一区二区五区| 7777精品久久久大香线蕉| 91首页免费视频| 国产+成+人+亚洲欧洲自线| 精品在线视频一区| 人人狠狠综合久久亚洲| 亚洲国产中文字幕在线视频综合| 国产精品久久三| 久久蜜桃香蕉精品一区二区三区| 日韩一区二区三区免费观看| 欧美专区日韩专区| 色综合夜色一区| 91老师国产黑色丝袜在线| 丁香激情综合国产| 国产精品一区二区男女羞羞无遮挡| 日韩二区三区四区| 亚洲成人av福利| 亚洲一区二区三区自拍| 一区二区视频在线| 亚洲欧美一区二区不卡| 亚洲欧洲日产国产综合网| 国产精品久久久久7777按摩| 欧美国产禁国产网站cc|