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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? unzip.c

?? zip壓縮
?? C
?? 第 1 頁 / 共 5 頁
字號:
#endif#ifdef DLL                        if (G.redirect_text)                            G.redirect_data = 2;#endif                    }                    break;#ifndef CMS_MVS                case ('C'):    /* -C:  match filenames case-insensitively */                    if (negative)                        uO.C_flag = FALSE, negative = 0;                    else                        uO.C_flag = TRUE;                    break;#endif /* !CMS_MVS */#if (!defined(SFX) || defined(SFX_EXDIR))                case ('d'):                    if (negative) {   /* negative not allowed with -d exdir */                        Info(slide, 0x401, ((char *)slide,                          LoadFarString(MustGiveExdir)));                        return(PK_PARAM);  /* don't extract here by accident */                    }                    if (uO.exdir != (char *)NULL) {                        Info(slide, 0x401, ((char *)slide,                          LoadFarString(OnlyOneExdir)));                        return(PK_PARAM);    /* GRR:  stupid restriction? */                    } else {                        /* first check for "-dexdir", then for "-d exdir" */                        uO.exdir = s;                        if (*uO.exdir == '\0') {                            if (argc > 1) {                                --argc;                                uO.exdir = *++argv;                                if (*uO.exdir == '-') {                                    Info(slide, 0x401, ((char *)slide,                                      LoadFarString(MustGiveExdir)));                                    return(PK_PARAM);                                }                                /* else uO.exdir points at extraction dir */                            } else {                                Info(slide, 0x401, ((char *)slide,                                  LoadFarString(MustGiveExdir)));                                return(PK_PARAM);                            }                        }                        /* uO.exdir now points at extraction dir (-dexdir or                         *  -d exdir); point s at end of exdir to avoid mis-                         *  interpretation of exdir characters as more options                         */                        if (*s != 0)                            while (*++s != 0)                                ;                    }                    break;#endif /* !SFX || SFX_EXDIR */                case ('e'):    /* just ignore -e, -x options (extract) */                    break;#ifdef MACOS                case ('E'): /* -E [MacOS] display Mac e.f. when restoring */                    if( negative ) {                        uO.E_flag = FALSE, negative = 0;                    } else {                        uO.E_flag = TRUE;                    }                    break;#endif /* MACOS */                case ('f'):    /* "freshen" (extract only newer files) */                    if (negative)                        uO.fflag = uO.uflag = FALSE, negative = 0;                    else                        uO.fflag = uO.uflag = TRUE;                    break;#if (defined(RISCOS) || defined(ACORN_FTYPE_NFS))                case ('F'):    /* Acorn filetype & NFS extension handling */                    if (negative)                        uO.acorn_nfs_ext = FALSE, negative = 0;                    else                        uO.acorn_nfs_ext = TRUE;                    break;#endif /* RISCOS || ACORN_FTYPE_NFS */                case ('h'):    /* just print help message and quit */                    *pargc = -1;                    return USAGE(PK_OK);#ifdef MACOS                case ('i'): /* -i [MacOS] ignore filenames stored in Mac ef */                    if( negative ) {                        uO.i_flag = FALSE, negative = 0;                    } else {                        uO.i_flag = TRUE;                    }                    break;#endif  /* MACOS */                case ('j'):    /* junk pathnames/directory structure */                    if (negative)                        uO.jflag = FALSE, negative = 0;                    else                        uO.jflag = TRUE;                    break;#if (defined(__BEOS__) || defined(MACOS))                case ('J'):    /* Junk BeOS or MacOS file attributes */                    if( negative ) {                        uO.J_flag = FALSE, negative = 0;                    } else {                        uO.J_flag = TRUE;                    }                    break;#endif /* __BEOS__ || MACOS */#ifndef SFX                case ('l'):                    if (negative) {                        uO.vflag = MAX(uO.vflag-negative,0);                        negative = 0;                    } else                        ++uO.vflag;                    break;#endif /* !SFX */#ifndef CMS_MVS                case ('L'):    /* convert (some) filenames to lowercase */                    if (negative) {                        uO.L_flag = MAX(uO.L_flag-negative,0);                        negative = 0;                    } else                        ++uO.L_flag;                    break;#endif /* !CMS_MVS */#ifdef MORE#ifdef CMS_MVS                case ('m'):#endif                case ('M'):    /* send all screen output through "more" fn. *//* GRR:  eventually check for numerical argument => height */                    if (negative)                        G.M_flag = FALSE, negative = 0;                    else                        G.M_flag = TRUE;                    break;#endif /* MORE */                case ('n'):    /* don't overwrite any files */                    if (negative)                        uO.overwrite_none = FALSE, negative = 0;                    else                        uO.overwrite_none = TRUE;                    break;#ifdef AMIGA                case ('N'):    /* restore comments as filenotes */                    if (negative)                        uO.N_flag = FALSE, negative = 0;                    else                        uO.N_flag = TRUE;                    break;#endif /* AMIGA */                case ('o'):    /* OK to overwrite files without prompting */                    if (negative) {                        uO.overwrite_all = MAX(uO.overwrite_all-negative,0);                        negative = 0;                    } else                        ++uO.overwrite_all;                    break;                case ('p'):    /* pipes:  extract to stdout, no messages */                    if (negative) {                        uO.cflag = FALSE;                        uO.qflag = MAX(uO.qflag-999,0);                        negative = 0;                    } else {                        uO.cflag = TRUE;                        uO.qflag += 999;                    }                    break;#if CRYPT                /* GRR:  yes, this is highly insecure, but dozens of people                 * have pestered us for this, so here we go... */                case ('P'):                    if (negative) {   /* negative not allowed with -P passwd */                        Info(slide, 0x401, ((char *)slide,                          LoadFarString(MustGivePasswd)));                        return(PK_PARAM);  /* don't extract here by accident */                    }                    if (uO.pwdarg != (char *)NULL) {/*                        GRR:  eventually support multiple passwords?                        Info(slide, 0x401, ((char *)slide,                          LoadFarString(OnlyOnePasswd)));                        return(PK_PARAM); */                    } else {                        /* first check for "-Ppasswd", then for "-P passwd" */                        uO.pwdarg = s;                        if (*uO.pwdarg == '\0') {                            if (argc > 1) {                                --argc;                                uO.pwdarg = *++argv;                                if (*uO.pwdarg == '-') {                                    Info(slide, 0x401, ((char *)slide,                                      LoadFarString(MustGivePasswd)));                                    return(PK_PARAM);                                }                                /* else pwdarg points at decryption password */                            } else {                                Info(slide, 0x401, ((char *)slide,                                  LoadFarString(MustGivePasswd)));                                return(PK_PARAM);                            }                        }                        /* pwdarg now points at decryption password (-Ppasswd or                         *  -P passwd); point s at end of passwd to avoid mis-                         *  interpretation of passwd characters as more options                         */                        if (*s != 0)                            while (*++s != 0)                                ;                    }                    break;#endif /* CRYPT */                case ('q'):    /* quiet:  fewer comments/messages */                    if (negative) {                        uO.qflag = MAX(uO.qflag-negative,0);                        negative = 0;                    } else                        ++uO.qflag;                    break;#ifdef QDOS                case ('Q'):   /* QDOS flags */                    qlflag ^= strtol(s, &s, 10);                    break;    /* we XOR this as we can config qlflags */#endif#ifdef DOS_FLX_NLM_OS2_W32                case ('s'):    /* spaces in filenames:  allow by default */                    if (negative)                        uO.sflag = FALSE, negative = 0;                    else                        uO.sflag = TRUE;                    break;#endif /* DOS_FLX_NLM_OS2_W32 */                case ('t'):                    if (negative)                        uO.tflag = FALSE, negative = 0;                    else                        uO.tflag = TRUE;                    break;#ifdef TIMESTAMP                case ('T'):                    if (negative)                        uO.T_flag = FALSE, negative = 0;                    else                        uO.T_flag = TRUE;                    break;#endif                case ('u'):    /* update (extract only new and newer files) */                    if (negative)                        uO.uflag = FALSE, negative = 0;                    else                        uO.uflag = TRUE;                    break;#ifndef CMS_MVS                case ('U'):    /* obsolete; to be removed in version 6.0 */                    if (negative)                        uO.L_flag = TRUE, negative = 0;                    else                        uO.L_flag = FALSE;                    break;#endif /* !CMS_MVS */#ifndef SFX                case ('v'):    /* verbose */                    if (negative) {                        uO.vflag = MAX(uO.vflag-negative,0);                        negative = 0;                    } else if (uO.vflag)                        ++uO.vflag;                    else                        uO.vflag = 2;                    break;#endif /* !SFX */#ifndef CMS_MVS                case ('V'):    /* Version (retain VMS/DEC-20 file versions) */                    if (negative)                        uO.V_flag = FALSE, negative = 0;                    else                        uO.V_flag = TRUE;                    break;#endif /* !CMS_MVS */                case ('x'):    /* extract:  default */#ifdef SFX                    /* when 'x' is the only option in this argument, and the                     * next arg is not an option, assume this initiates an                     * exclusion list (-x xlist):  terminate option-scanning                     * and leave uz_opts with argv still pointing to "-x";                     * the xlist is processed later                     */                    if (s - argv[0] == 2 && *s == '\0' &&                        argc > 1 && argv[1][0] != '-') {                        /* break out of nested loops without "++argv;--argc" */                        goto opts_done;                    }#endif /* SFX */                    break;#if (defined(RESTORE_UIDGID) || defined(RESTORE_ACL))                case ('X'):   /* restore owner/protection info (need privs?) */                    if (negative) {                        uO.X_flag = MAX(uO.X_flag-negative,0);                        negative = 0;                    } else                        ++uO.X_flag;                    break;#endif /* RESTORE_UIDGID || RESTORE_ACL */                case ('z'):    /* display only the archive comment */                    if (negative) {                        uO.zflag = MAX(uO.zflag-negative,0);                        negative = 0;                    } else                        ++uO.zflag;                    break;#ifndef SFX                case ('Z'):    /* should have been first option (ZipInfo) */                    Info(slide, 0x401, ((char *)slide, LoadFarString(Zfirst)));                    error = TRUE;                    break;#endif /* !SFX */#ifdef DOS_H68_OS2_W32                case ('$'):                    if (negative) {                        uO.volflag = MAX(uO.volflag-negative,0);                        negative = 0;                    } else                        ++uO.volflag;                    break;#endif /* DOS_H68_OS2_W32 */#if (!defined(RISCOS) && !defined(CMS_MVS) && !defined(TANDEM))                case (':'):                    if (negative) {                        uO.ddotflag = MAX(uO.ddotflag-negative,0);                        negative = 0;                    } else                        ++uO.ddotflag;                    break;#endif /* !RISCOS && !CMS_MVS && !TANDEM */                default:                    error = TRUE;                    break;            } /* end switch */        } /* end while (not end of argument string) */    } /* end while (not done with switches) *//*---------------------------------------------------------------------------    Check for nonsensical combinations of options.  ---------------------------------------------------------------------------*/#ifdef SFXopts_done:  /* yes, very ugly...but only used by UnZipSFX with -x xlist */#endif    if ((uO.cflag && uO.tflag) || (uO.cflag && uO.uflag) ||        (uO.tflag && uO.uflag) || (uO.fflag && uO.overwrite_none))    {        Info(slide, 0x401, ((char *)slide, LoadFarString(InvalidOptionsMsg)));        error = TRUE;    }    if (uO.aflag > 2)        uO.aflag = 2;#ifdef VMS    if (uO.bflag > 2)        uO.bflag = 2;#endif    if (uO.overwrite_all && uO.overwrite_none) {        Info(slide, 0x401, ((char *)slide, LoadFarString(IgnoreOOptionMsg)));        uO.overwrite_all = FALSE;    }#ifdef MORE    if (G.M_flag && !isatty(1))  /* stdout redirected: "more" func. useless */        G.M_flag = 0;#endif#ifdef SFX    if (error)#else    if ((argc-- == 0) || error)#endif    {        *pargc = argc;        *pargv = argv;#ifndef SFX

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区欧美激情| 久久在线免费观看| 亚洲夂夂婷婷色拍ww47 | 人禽交欧美网站| 91超碰这里只有精品国产| 亚洲国产美国国产综合一区二区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 亚洲国产中文字幕| 欧美一区在线视频| 国产一区二三区| 国产精品伦一区二区三级视频| 91亚洲永久精品| 一区二区三区蜜桃网| 欧美日韩国产另类一区| 蜜桃久久久久久久| 国产视频亚洲色图| 色偷偷久久人人79超碰人人澡| 亚洲国产成人av网| ww亚洲ww在线观看国产| 99久久精品99国产精品 | 欧美一区二区三区日韩视频| 国产一区视频在线看| 综合久久久久久久| 日韩一级片在线观看| 国产精品夜夜嗨| 亚洲综合区在线| 精品久久久久久最新网址| 99久久久精品免费观看国产蜜| 婷婷六月综合网| 国产日韩综合av| 欧美日韩国产另类不卡| 国产精品亚洲综合一区在线观看| 亚洲精品乱码久久久久久黑人 | 色婷婷综合视频在线观看| 美女网站在线免费欧美精品| 国产精品妹子av| 7777精品伊人久久久大香线蕉的| 国产福利精品一区二区| 婷婷开心激情综合| 自拍偷拍欧美精品| 欧美zozozo| 欧美日韩国产一级| av电影在线观看一区| 麻豆国产欧美日韩综合精品二区| 日韩一区欧美一区| 久久九九影视网| 日韩欧美亚洲国产另类| 色婷婷综合视频在线观看| 国产精品一区二区三区四区| 五月婷婷色综合| 一区二区三区成人在线视频| 久久精品水蜜桃av综合天堂| 欧美精三区欧美精三区| 99re亚洲国产精品| 国产精品99久久久| 国产一区二区在线视频| 日韩精品免费视频人成| 一区二区三区91| 亚洲精品va在线观看| 国产精品久久久久久妇女6080 | 青青国产91久久久久久| 亚洲线精品一区二区三区| 国产精品护士白丝一区av| 久久久久久久久久美女| 精品国产91乱码一区二区三区 | 中国av一区二区三区| 久久一区二区三区四区| 欧美一区二区三区免费大片| 在线一区二区三区做爰视频网站| 丁香啪啪综合成人亚洲小说 | 国产精品久久精品日日| 国产欧美日韩中文久久| 2024国产精品视频| 亚洲精品一区二区在线观看| 欧美一区二区三区人| 91精品国产欧美一区二区| 欧美群妇大交群的观看方式| 在线影视一区二区三区| 欧美在线观看视频一区二区 | 91精品国产入口| 777a∨成人精品桃花网| 欧美一区二区三区不卡| 6080国产精品一区二区| 日韩免费电影一区| 精品欧美乱码久久久久久1区2区| 久久这里都是精品| 欧美国产欧美亚州国产日韩mv天天看完整| 久久―日本道色综合久久| 久久女同性恋中文字幕| 中文字幕欧美三区| 亚洲欧美区自拍先锋| 亚洲一区欧美一区| 免费三级欧美电影| 国产综合久久久久久鬼色 | 视频一区视频二区中文| 久久福利视频一区二区| 国产老肥熟一区二区三区| 成人免费高清在线观看| 91久久精品一区二区三| 欧美挠脚心视频网站| 欧美大肚乱孕交hd孕妇| 欧美国产精品专区| 亚洲国产精品视频| 精品制服美女久久| 99久久伊人久久99| 欧美日韩一区二区在线视频| 欧美一区二区三区四区在线观看| www精品美女久久久tv| 中文字幕精品一区二区精品绿巨人 | 久久99精品久久久| 成人激情图片网| 欧美日韩成人一区二区| 精品国产乱码久久久久久夜甘婷婷| 日本一区二区成人在线| 亚洲va国产天堂va久久en| 久久9热精品视频| 91丨porny丨中文| 欧美一区二区美女| 自拍偷自拍亚洲精品播放| 青青草原综合久久大伊人精品优势 | 国产精品美女久久久久久久久久久| 亚洲一区二区三区国产| 国产精品18久久久久久久久 | 国产片一区二区三区| 一区二区三区在线视频观看58| 奇米777欧美一区二区| 99久久99久久免费精品蜜臀| 欧美一区二区三区在线视频| 亚洲图片激情小说| 国内精品写真在线观看| 欧美系列一区二区| 久久精品日产第一区二区三区高清版 | 欧美一区二区三区在线观看视频| 国产精品美女www爽爽爽| 日韩精品一级二级| 99re热这里只有精品免费视频| 精品欧美乱码久久久久久| 亚洲一级电影视频| www.欧美日韩| 久久婷婷综合激情| 毛片av中文字幕一区二区| 在线国产亚洲欧美| 中文字幕在线一区| 国产麻豆视频一区| 日韩视频免费直播| 午夜精品久久一牛影视| 91丨porny丨国产| 国产欧美日韩三区| 精品午夜久久福利影院 | 欧美大胆一级视频| 首页国产丝袜综合| 欧美日韩国产精品自在自线| 亚洲三级电影网站| 91色.com| 亚洲视频免费在线观看| 国产成人午夜电影网| 精品国产制服丝袜高跟| 天天操天天色综合| 欧美在线你懂得| 亚洲一区二区三区中文字幕在线| av色综合久久天堂av综合| 国产精品美日韩| 成人动漫一区二区在线| 国产午夜久久久久| 国产精品99久久不卡二区| 国产视频911| 懂色av中文字幕一区二区三区| 欧美激情一区三区| 成人午夜伦理影院| 国产精品三级视频| 99re热视频精品| 亚洲精品大片www| 欧美日韩极品在线观看一区| 亚洲成人动漫在线免费观看| 欧美精品久久天天躁| 日本成人超碰在线观看| 欧美成人精品1314www| 激情av综合网| 国产清纯白嫩初高生在线观看91 | 亚洲福利一区二区| 91精品国产综合久久蜜臀| 午夜欧美在线一二页| 欧美日韩久久一区二区| 欧美刺激午夜性久久久久久久| 黑人巨大精品欧美黑白配亚洲| 欧美成人三级在线| 国产精品99久久久久久有的能看 | 色综合一个色综合亚洲| 亚洲欧美一区二区久久 | 成人免费三级在线| 亚洲精品你懂的| 欧美色精品在线视频| 亚洲一区二区五区| 欧美美女网站色| 日本亚洲欧美天堂免费| 欧美精品久久天天躁| 久久精品国产精品亚洲红杏| 精品国产91久久久久久久妲己| caoporn国产一区二区| 亚洲精品乱码久久久久久久久|