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

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

?? uudecode.c

?? 手機(jī)嵌入式Linux下可用的busybox源碼
?? C
字號:
/* uudecode.c -- uudecode utility. * Copyright (C) 1994, 1995 Free Software Foundation, Inc. * * This product is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This product is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this product; see the file COPYING.  If not, write to * the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * Reworked to GNU style by Ian Lance Taylor, ian@airs.com, August 93. * * Original copyright notice is retained at the end of this file. */#include <stdio.h>#include <errno.h>#include <getopt.h>#include <string.h>#include <stdlib.h>#include "busybox.h"#include "pwd_grp/pwd.h"#include "pwd_grp/grp.h"/*struct passwd *getpwnam();*//* Single character decode.  */#define	DEC(Char) (((Char) - ' ') & 077)static int read_stduu (const char *inname){  char buf[2 * BUFSIZ];  while (1) {    int n;    char *p;    if (fgets (buf, sizeof(buf), stdin) == NULL) {      error_msg("%s: Short file", inname);      return FALSE;    }    p = buf;    /* N is used to avoid writing out all the characters at the end of       the file.  */    n = DEC (*p);    if (n <= 0)      break;    for (++p; n > 0; p += 4, n -= 3) {      char ch;      if (n >= 3) {        ch = DEC (p[0]) << 2 | DEC (p[1]) >> 4;        putchar (ch);        ch = DEC (p[1]) << 4 | DEC (p[2]) >> 2;        putchar (ch);        ch = DEC (p[2]) << 6 | DEC (p[3]);        putchar (ch);      } else {        if (n >= 1) {          ch = DEC (p[0]) << 2 | DEC (p[1]) >> 4;          putchar (ch);        }        if (n >= 2) {          ch = DEC (p[1]) << 4 | DEC (p[2]) >> 2;          putchar (ch);        }      }    }  }  if (fgets (buf, sizeof(buf), stdin) == NULL      || strcmp (buf, "end\n")) {    error_msg("%s: No `end' line", inname);    return FALSE;  }  return TRUE;}static int read_base64 (const char *inname){  static const char b64_tab[256] = {    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*000-007*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*010-017*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*020-027*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*030-037*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*040-047*/    '\177', '\177', '\177', '\76',  '\177', '\177', '\177', '\77',  /*050-057*/    '\64',  '\65',  '\66',  '\67',  '\70',  '\71',  '\72',  '\73',  /*060-067*/    '\74',  '\75',  '\177', '\177', '\177', '\100', '\177', '\177', /*070-077*/    '\177', '\0',   '\1',   '\2',   '\3',   '\4',   '\5',   '\6',   /*100-107*/    '\7',   '\10',  '\11',  '\12',  '\13',  '\14',  '\15',  '\16',  /*110-117*/    '\17',  '\20',  '\21',  '\22',  '\23',  '\24',  '\25',  '\26',  /*120-127*/    '\27',  '\30',  '\31',  '\177', '\177', '\177', '\177', '\177', /*130-137*/    '\177', '\32',  '\33',  '\34',  '\35',  '\36',  '\37',  '\40',  /*140-147*/    '\41',  '\42',  '\43',  '\44',  '\45',  '\46',  '\47',  '\50',  /*150-157*/    '\51',  '\52',  '\53',  '\54',  '\55',  '\56',  '\57',  '\60',  /*160-167*/    '\61',  '\62',  '\63',  '\177', '\177', '\177', '\177', '\177', /*170-177*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*200-207*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*210-217*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*220-227*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*230-237*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*240-247*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*250-257*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*260-267*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*270-277*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*300-307*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*310-317*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*320-327*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*330-337*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*340-347*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*350-357*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*360-367*/    '\177', '\177', '\177', '\177', '\177', '\177', '\177', '\177', /*370-377*/  };  unsigned char buf[2 * BUFSIZ];  while (1) {    int last_data = 0;    unsigned char *p;    if (fgets (buf, sizeof(buf), stdin) == NULL) {      error_msg("%s: Short file", inname);      return FALSE;    }    p = buf;    if (memcmp (buf, "====", 4) == 0)      break;    if (last_data != 0) {      error_msg("%s: data following `=' padding character", inname);      return FALSE;    }    /* The following implementation of the base64 decoding might look       a bit clumsy but I only try to follow the POSIX standard:       ``All line breaks or other characters not found in the table       [with base64 characters] shall be ignored by decoding       software.''  */    while (*p != '\n') {      char c1, c2, c3;      while ((b64_tab[*p] & '\100') != 0)        if (*p == '\n' || *p++ == '=')          break;      if (*p == '\n')        /* This leaves the loop.  */        continue;      c1 = b64_tab[*p++];      while ((b64_tab[*p] & '\100') != 0)        if (*p == '\n' || *p++ == '=') {          error_msg("%s: illegal line", inname);          return FALSE;        }      c2 = b64_tab[*p++];      while (b64_tab[*p] == '\177')        if (*p++ == '\n') {          error_msg("%s: illegal line", inname);          return FALSE;        }      if (*p == '=') {        putchar (c1 << 2 | c2 >> 4);        last_data = 1;        break;      }      c3 = b64_tab[*p++];      while (b64_tab[*p] == '\177')        if (*p++ == '\n') {          error_msg("%s: illegal line", inname);          return FALSE;        }      putchar (c1 << 2 | c2 >> 4);      putchar (c2 << 4 | c3 >> 2);      if (*p == '=') {        last_data = 1;        break;      }      else        putchar (c3 << 6 | b64_tab[*p++]);    }  }  return TRUE;}static int decode (const char *inname,                   const char *forced_outname){  struct passwd *pw;  register char *p;  int mode;  char buf[2 * BUFSIZ];  char *outname = NULL;  int do_base64 = 0;  int res;  int dofre;  /* Search for header line.  */  while (1) {    if (fgets (buf, sizeof (buf), stdin) == NULL) {      error_msg("%s: No `begin' line", inname);      return FALSE;    }    if (strncmp (buf, "begin", 5) == 0) {      if (sscanf (buf, "begin-base64 %o %s", &mode, buf) == 2) {        do_base64 = 1;        break;      } else if (sscanf (buf, "begin %o %s", &mode, buf) == 2)        break;    }  }  /* If the output file name is given on the command line this rules.  */  dofre = FALSE;  if (forced_outname != NULL)    outname = (char *) forced_outname;  else {    /* Handle ~user/file format.  */    if (buf[0] != '~')      outname = buf;    else {      p = buf + 1;      while (*p != '/')        ++p;      if (*p == '\0') {        error_msg("%s: Illegal ~user", inname);        return FALSE;      }      *p++ = '\0';      pw = getpwnam (buf + 1);      if (pw == NULL) {        error_msg("%s: No user `%s'", inname, buf + 1);        return FALSE;      }      outname = concat_path_file(pw->pw_dir, p);      dofre = TRUE;    }  }  /* Create output file and set mode.  */  if (strcmp (outname, "/dev/stdout") != 0 && strcmp (outname, "-") != 0      && (freopen (outname, "w", stdout) == NULL	  || chmod (outname, mode & (S_IRWXU | S_IRWXG | S_IRWXO))         )) {    perror_msg("%s", outname); /* */    if (dofre)	free(outname);    return FALSE;  }  /* We differenciate decoding standard UU encoding and base64.  A     common function would only slow down the program.  */  /* For each input line:  */  if (do_base64)      res = read_base64 (inname);  else       res = read_stduu (inname);  if (dofre)      free(outname);  return res;}int uudecode_main (int argc,                   char **argv){  int opt;  int exit_status;  const char *outname;  outname = NULL;  while ((opt = getopt(argc, argv, "o:")) != EOF) {    switch (opt) {     case 0:      break;     case 'o':      outname = optarg;      break;     default:      show_usage();    }  }  if (optind == argc)    exit_status = decode ("stdin", outname) == 0 ? EXIT_SUCCESS : EXIT_FAILURE;  else {    exit_status = EXIT_SUCCESS;    do {      if (freopen (argv[optind], "r", stdin) != NULL) {        if (decode (argv[optind], outname) != 0)          exit_status = FALSE;      } else {        perror_msg("%s", argv[optind]);        exit_status = EXIT_FAILURE;      }      optind++;    }    while (optind < argc);  }  return(exit_status);}/* Copyright (c) 1983 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change  *		ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>  * * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一区二区果冻传媒| 宅男噜噜噜66一区二区66| 一本色道综合亚洲| 欧美www视频| 亚洲品质自拍视频| 国产在线不卡一区| 欧美视频日韩视频| 国产精品网站在线播放| 免费精品视频在线| 欧美偷拍一区二区| 国产精品久久久久7777按摩| 蜜桃一区二区三区在线观看| 欧美视频在线不卡| 国产精品国产三级国产aⅴ入口 | 五月天久久比比资源色| 国产成人精品三级麻豆| 精品美女被调教视频大全网站| 中文字幕亚洲一区二区av在线| 精品一区二区三区免费观看| 欧美日韩午夜影院| 一区二区三区在线视频观看58| 成人一区二区三区视频在线观看| 日韩免费观看高清完整版| 亚洲自拍与偷拍| 7777精品伊人久久久大香线蕉完整版| 中文字幕一区三区| 成av人片一区二区| 国产精品天干天干在线综合| 韩国成人福利片在线播放| 欧美一区二区三区系列电影| 午夜国产精品影院在线观看| 欧美午夜理伦三级在线观看| 亚洲欧美另类久久久精品| eeuss影院一区二区三区| 久久久不卡网国产精品一区| 精品一区二区在线播放| 日韩一级二级三级精品视频| 日本成人在线电影网| 欧美久久久久久蜜桃| 亚洲一区二区偷拍精品| 精品视频资源站| 亚洲国产精品自拍| 67194成人在线观看| 男女男精品视频| 精品国偷自产国产一区| 国产尤物一区二区在线| 国产亲近乱来精品视频| 丁香婷婷深情五月亚洲| 中文av一区二区| 94-欧美-setu| 亚洲电影一区二区| 91精品国产综合久久精品图片 | www精品美女久久久tv| 激情五月婷婷综合| 国产欧美日韩卡一| 色综合色狠狠天天综合色| 亚洲老妇xxxxxx| 在线不卡欧美精品一区二区三区| www.欧美色图| 亚洲午夜精品一区二区三区他趣| 3d动漫精品啪啪一区二区竹菊| 久久精品国产99久久6| 中文字幕+乱码+中文字幕一区| 97久久久精品综合88久久| 亚洲成人激情社区| 精品毛片乱码1区2区3区| 成人丝袜高跟foot| 亚洲国产毛片aaaaa无费看| 日韩精品一区二区三区中文不卡 | 黑人精品欧美一区二区蜜桃| 亚洲国产精品v| 欧美日韩在线三级| 国产麻豆9l精品三级站| 亚洲欧美激情插| 精品国产欧美一区二区| 波多野结衣精品在线| 亚洲超碰精品一区二区| 国产亚洲精久久久久久| 欧美在线视频全部完| 国内精品久久久久影院色| 综合网在线视频| 欧美成人精品二区三区99精品| 成人视屏免费看| 美女任你摸久久| 亚洲女女做受ⅹxx高潮| 日韩精品中文字幕一区二区三区 | 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 欧美高清视频www夜色资源网| 欧美人与z0zoxxxx视频| 青椒成人免费视频| 2023国产一二三区日本精品2022| 91麻豆swag| 国产成人自拍高清视频在线免费播放| 亚洲一线二线三线久久久| 欧美刺激午夜性久久久久久久 | 裸体健美xxxx欧美裸体表演| 亚洲视频一区在线| 国产偷国产偷精品高清尤物| 欧美军同video69gay| 91免费看片在线观看| 国产成人激情av| 韩日精品视频一区| 蜜臀av性久久久久蜜臀aⅴ四虎 | 懂色av中文字幕一区二区三区| 日本视频免费一区| 亚洲一区av在线| 国产福利精品导航| 免费一区二区视频| 日韩va亚洲va欧美va久久| 亚洲主播在线播放| 综合久久国产九一剧情麻豆| 国产欧美中文在线| 久久精品视频免费| 久久久www免费人成精品| 精品国产一区a| 精品欧美一区二区在线观看| 欧美一区二区三区免费在线看| 欧美午夜精品久久久久久孕妇| 91在线精品秘密一区二区| 成人国产精品免费观看视频| 国产成人av一区| 成人精品鲁一区一区二区| 国产精品99久久不卡二区| 激情国产一区二区| 激情成人午夜视频| 国产高清在线精品| 成人性生交大片免费| 波多野结衣中文字幕一区二区三区| 国产电影一区在线| 成人av在线网站| 99精品欧美一区二区三区综合在线| 99在线视频精品| 色狠狠一区二区三区香蕉| 欧美午夜片在线看| 欧美精品一二三| 日韩免费观看高清完整版| 久久蜜桃av一区二区天堂| 中文字幕高清不卡| 亚洲欧美一区二区三区国产精品| 亚洲欧美日韩在线不卡| 亚洲r级在线视频| 蜜臀va亚洲va欧美va天堂| 国产在线视频不卡二| 成人黄色av电影| 欧美在线色视频| 欧美刺激午夜性久久久久久久| 久久精品亚洲乱码伦伦中文| 日韩美女啊v在线免费观看| 亚洲妇女屁股眼交7| 久久 天天综合| www..com久久爱| 91麻豆精品91久久久久久清纯| 久久久久久夜精品精品免费| ...av二区三区久久精品| 天天亚洲美女在线视频| 国产一区二区在线视频| 日本久久电影网| 亚洲精品在线免费观看视频| 中文字幕一区二区三区在线播放| 偷拍日韩校园综合在线| 国产精品中文欧美| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 日韩欧美色综合| 亚洲欧美日韩国产手机在线| 美美哒免费高清在线观看视频一区二区 | 国产精品久久久一本精品 | 91国产免费看| 久久久亚洲午夜电影| 亚洲va欧美va天堂v国产综合| 国产suv精品一区二区883| 欧美喷潮久久久xxxxx| 国产精品国产三级国产普通话99 | 欧美韩日一区二区三区| 亚洲第一狼人社区| 成人免费观看视频| 欧美成人乱码一区二区三区| 亚洲伊人伊色伊影伊综合网| 国产成人a级片| 日韩一区二区免费在线电影 | 国产亚洲精品7777| 蜜臀a∨国产成人精品| 色综合一区二区三区| 欧美国产日韩a欧美在线观看| 日韩精品视频网站| 在线欧美日韩精品| 亚洲视频在线观看三级| 国产成a人亚洲| 精品国内二区三区| 免费观看在线色综合| 欧美精品在线视频| 亚洲国产一区二区a毛片| 色综合天天综合网天天狠天天| 久久久久久久综合日本| 蜜桃在线一区二区三区| 欧美一卡二卡三卡四卡| 日韩电影在线一区二区三区| 欧美片网站yy| 五月综合激情网| 欧美高清激情brazzers| 视频一区中文字幕国产|