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

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

?? getopt.c

?? grub4dos-0.4.4-2008- 08-src.zip
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
	optind = 1;	/* Don't scan ARGV[0], the program name.  */      optstring = _getopt_initialize (argc, argv, optstring);      __getopt_initialized = 1;    }  /* Test whether ARGV[optind] points to a non-option argument.     Either it does not have option syntax, or there is an environment flag     from the shell indicating it is not an option.  The later information     is only used when the used in the GNU libc.  */#ifdef _LIBC# define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0'	      \		      || (optind < nonoption_flags_len			      \			  && __getopt_nonoption_flags[optind] == '1'))#else# define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')#endif  if (nextchar == NULL || *nextchar == '\0')    {      /* Advance to the next ARGV-element.  */      /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been	 moved back by the user (who may also have changed the arguments).  */      if (last_nonopt > optind)	last_nonopt = optind;      if (first_nonopt > optind)	first_nonopt = optind;      if (ordering == PERMUTE)	{	  /* If we have just processed some options following some non-options,	     exchange them so that the options come first.  */	  if (first_nonopt != last_nonopt && last_nonopt != optind)	    exchange ((char **) argv);	  else if (last_nonopt != optind)	    first_nonopt = optind;	  /* Skip any additional non-options	     and extend the range of non-options previously skipped.  */	  while (optind < argc && NONOPTION_P)	    optind++;	  last_nonopt = optind;	}      /* The special ARGV-element `--' means premature end of options.	 Skip it like a null option,	 then exchange with previous non-options as if it were an option,	 then skip everything else like a non-option.  */      if (optind != argc && !strcmp (argv[optind], "--"))	{	  optind++;	  if (first_nonopt != last_nonopt && last_nonopt != optind)	    exchange ((char **) argv);	  else if (first_nonopt == last_nonopt)	    first_nonopt = optind;	  last_nonopt = argc;	  optind = argc;	}      /* If we have done all the ARGV-elements, stop the scan	 and back over any non-options that we skipped and permuted.  */      if (optind == argc)	{	  /* Set the next-arg-index to point at the non-options	     that we previously skipped, so the caller will digest them.  */	  if (first_nonopt != last_nonopt)	    optind = first_nonopt;	  return -1;	}      /* If we have come to a non-option and did not permute it,	 either stop the scan or describe it to the caller and pass it by.  */      if (NONOPTION_P)	{	  if (ordering == REQUIRE_ORDER)	    return -1;	  optarg = argv[optind++];	  return 1;	}      /* We have found another option-ARGV-element.	 Skip the initial punctuation.  */      nextchar = (argv[optind] + 1		  + (longopts != NULL && argv[optind][1] == '-'));    }  /* Decode the current option-ARGV-element.  */  /* Check whether the ARGV-element is a long option.     If long_only and the ARGV-element has the form "-f", where f is     a valid short option, don't consider it an abbreviated form of     a long option that starts with f.  Otherwise there would be no     way to give the -f short option.     On the other hand, if there's a long option "fubar" and     the ARGV-element is "-fu", do consider that an abbreviation of     the long option, just like "--fu", and not "-f" with arg "u".     This distinction seems to be the most useful approach.  */  if (longopts != NULL      && (argv[optind][1] == '-'	  || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1])))))    {      char *nameend;      const struct option *p;      const struct option *pfound = NULL;      int exact = 0;      int ambig = 0;      int indfound = -1;      int option_index;      for (nameend = nextchar; *nameend && *nameend != '='; nameend++)	/* Do nothing.  */ ;      /* Test all long options for either exact match	 or abbreviated matches.  */      for (p = longopts, option_index = 0; p->name; p++, option_index++)	if (!strncmp (p->name, nextchar, nameend - nextchar))	  {	    if ((unsigned int) (nameend - nextchar)		== (unsigned int) strlen (p->name))	      {		/* Exact match found.  */		pfound = p;		indfound = option_index;		exact = 1;		break;	      }	    else if (pfound == NULL)	      {		/* First nonexact match found.  */		pfound = p;		indfound = option_index;	      }	    else	      /* Second or later nonexact match found.  */	      ambig = 1;	  }      if (ambig && !exact)	{	  if (opterr)	    fprintf (stderr, _("%s: option `%s' is ambiguous\n"),		     argv[0], argv[optind]);	  nextchar += strlen (nextchar);	  optind++;	  optopt = 0;	  return '?';	}      if (pfound != NULL)	{	  option_index = indfound;	  optind++;	  if (*nameend)	    {	      /* Don't test has_arg with >, because some C compilers don't		 allow it to be used on enums.  */	      if (pfound->has_arg)		optarg = nameend + 1;	      else		{		  if (opterr)		    {		      if (argv[optind - 1][1] == '-')			/* --option */			fprintf (stderr,				 _("%s: option `--%s' doesn't allow an argument\n"),				 argv[0], pfound->name);		      else			/* +option or -option */			fprintf (stderr,				 _("%s: option `%c%s' doesn't allow an argument\n"),				 argv[0], argv[optind - 1][0], pfound->name);		    }		  nextchar += strlen (nextchar);		  optopt = pfound->val;		  return '?';		}	    }	  else if (pfound->has_arg == 1)	    {	      if (optind < argc)		optarg = argv[optind++];	      else		{		  if (opterr)		    fprintf (stderr,			   _("%s: option `%s' requires an argument\n"),			   argv[0], argv[optind - 1]);		  nextchar += strlen (nextchar);		  optopt = pfound->val;		  return optstring[0] == ':' ? ':' : '?';		}	    }	  nextchar += strlen (nextchar);	  if (longind != NULL)	    *longind = option_index;	  if (pfound->flag)	    {	      *(pfound->flag) = pfound->val;	      return 0;	    }	  return pfound->val;	}      /* Can't find it as a long option.  If this is not getopt_long_only,	 or the option starts with '--' or is not a valid short	 option, then it's an error.	 Otherwise interpret it as a short option.  */      if (!long_only || argv[optind][1] == '-'	  || my_index (optstring, *nextchar) == NULL)	{	  if (opterr)	    {	      if (argv[optind][1] == '-')		/* --option */		fprintf (stderr, _("%s: unrecognized option `--%s'\n"),			 argv[0], nextchar);	      else		/* +option or -option */		fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),			 argv[0], argv[optind][0], nextchar);	    }	  nextchar = (char *) "";	  optind++;	  optopt = 0;	  return '?';	}    }  /* Look at and handle the next short option-character.  */  {    char c = *nextchar++;    char *temp = my_index (optstring, c);    /* Increment `optind' when we start to process its last character.  */    if (*nextchar == '\0')      ++optind;    if (temp == NULL || c == ':')      {	if (opterr)	  {	    if (posixly_correct)	      /* 1003.2 specifies the format of this message.  */	      fprintf (stderr, _("%s: illegal option -- %c\n"),		       argv[0], c);	    else	      fprintf (stderr, _("%s: invalid option -- %c\n"),		       argv[0], c);	  }	optopt = c;	return '?';      }    /* Convenience. Treat POSIX -W foo same as long option --foo */    if (temp[0] == 'W' && temp[1] == ';')      {	char *nameend;	const struct option *p;	const struct option *pfound = NULL;	int exact = 0;	int ambig = 0;	int indfound = 0;	int option_index;	/* This is an option that requires an argument.  */	if (*nextchar != '\0')	  {	    optarg = nextchar;	    /* If we end this ARGV-element by taking the rest as an arg,	       we must advance to the next element now.  */	    optind++;	  }	else if (optind == argc)	  {	    if (opterr)	      {		/* 1003.2 specifies the format of this message.  */		fprintf (stderr, _("%s: option requires an argument -- %c\n"),			 argv[0], c);	      }	    optopt = c;	    if (optstring[0] == ':')	      c = ':';	    else	      c = '?';	    return c;	  }	else	  /* We already incremented `optind' once;	     increment it again when taking next ARGV-elt as argument.  */	  optarg = argv[optind++];	/* optarg is now the argument, see if it's in the	   table of longopts.  */	for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)	  /* Do nothing.  */ ;	/* Test all long options for either exact match	   or abbreviated matches.  */	for (p = longopts, option_index = 0; p->name; p++, option_index++)	  if (!strncmp (p->name, nextchar, nameend - nextchar))	    {	      if ((unsigned int) (nameend - nextchar) == strlen (p->name))		{		  /* Exact match found.  */		  pfound = p;		  indfound = option_index;		  exact = 1;		  break;		}	      else if (pfound == NULL)		{		  /* First nonexact match found.  */		  pfound = p;		  indfound = option_index;		}	      else		/* Second or later nonexact match found.  */		ambig = 1;	    }	if (ambig && !exact)	  {	    if (opterr)	      fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),		       argv[0], argv[optind]);	    nextchar += strlen (nextchar);	    optind++;	    return '?';	  }	if (pfound != NULL)	  {	    option_index = indfound;	    if (*nameend)	      {		/* Don't test has_arg with >, because some C compilers don't		   allow it to be used on enums.  */		if (pfound->has_arg)		  optarg = nameend + 1;		else		  {		    if (opterr)		      fprintf (stderr, _("\%s: option `-W %s' doesn't allow an argument\n"),			       argv[0], pfound->name);		    nextchar += strlen (nextchar);		    return '?';		  }	      }	    else if (pfound->has_arg == 1)	      {		if (optind < argc)		  optarg = argv[optind++];		else		  {		    if (opterr)		      fprintf (stderr,			       _("%s: option `%s' requires an argument\n"),			       argv[0], argv[optind - 1]);		    nextchar += strlen (nextchar);		    return optstring[0] == ':' ? ':' : '?';		  }	      }	    nextchar += strlen (nextchar);	    if (longind != NULL)	      *longind = option_index;	    if (pfound->flag)	      {		*(pfound->flag) = pfound->val;		return 0;	      }	    return pfound->val;	  }	  nextchar = NULL;	  return 'W';	/* Let the application handle it.   */      }    if (temp[1] == ':')      {	if (temp[2] == ':')	  {	    /* This is an option that accepts an argument optionally.  */	    if (*nextchar != '\0')	      {		optarg = nextchar;		optind++;	      }	    else	      optarg = NULL;	    nextchar = NULL;	  }	else	  {	    /* This is an option that requires an argument.  */	    if (*nextchar != '\0')	      {		optarg = nextchar;		/* If we end this ARGV-element by taking the rest as an arg,		   we must advance to the next element now.  */		optind++;	      }	    else if (optind == argc)	      {		if (opterr)		  {		    /* 1003.2 specifies the format of this message.  */		    fprintf (stderr,			   _("%s: option requires an argument -- %c\n"),			   argv[0], c);		  }		optopt = c;		if (optstring[0] == ':')		  c = ':';		else		  c = '?';	      }	    else	      /* We already incremented `optind' once;		 increment it again when taking next ARGV-elt as argument.  */	      optarg = argv[optind++];	    nextchar = NULL;	  }      }    return c;  }}intgetopt (argc, argv, optstring)     int argc;     char *const *argv;     const char *optstring;{  return _getopt_internal (argc, argv, optstring,			   (const struct option *) 0,			   (int *) 0,			   0);}#endif	/* Not ELIDE_CODE.  */#ifdef TEST/* Compile with -DTEST to make an executable for use in testing   the above definition of `getopt'.  */intmain (argc, argv)     int argc;     char **argv;{  int c;  int digit_optind = 0;  while (1)    {      int this_option_optind = optind ? optind : 1;      c = getopt (argc, argv, "abc:d:0123456789");      if (c == -1)	break;      switch (c)	{	case '0':	case '1':	case '2':	case '3':	case '4':	case '5':	case '6':	case '7':	case '8':	case '9':	  if (digit_optind != 0 && digit_optind != this_option_optind)	    printf ("digits occur in two different argv-elements.\n");	  digit_optind = this_option_optind;	  printf ("option %c\n", c);	  break;	case 'a':	  printf ("option a\n");	  break;	case 'b':	  printf ("option b\n");	  break;	case 'c':	  printf ("option c with value `%s'\n", optarg);	  break;	case '?':	  break;	default:	  printf ("?? getopt returned character code 0%o ??\n", c);	}    }  if (optind < argc)    {      printf ("non-option ARGV-elements: ");      while (optind < argc)	printf ("%s ", argv[optind++]);      printf ("\n");    }  exit (0);}#endif /* TEST */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线区一区二视频| 2023国产精华国产精品| 精品一区二区三区在线播放视频| 日韩一区欧美一区| 精品国产网站在线观看| 欧美系列在线观看| 成人av中文字幕| 久久99久国产精品黄毛片色诱| 一区二区三区在线看| 日本一区二区三级电影在线观看| 欧美日韩一区二区欧美激情| www.久久久久久久久| 精品在线免费观看| 午夜a成v人精品| 亚洲精品中文在线观看| 中文字幕av资源一区| 欧美大片国产精品| 欧美日韩视频第一区| 色哟哟国产精品| 9l国产精品久久久久麻豆| 国精产品一区一区三区mba桃花| 午夜精品免费在线观看| 日韩美女视频一区二区| 国产欧美日韩在线视频| 精品美女在线观看| 欧美电视剧免费全集观看 | 欧美视频日韩视频在线观看| 成人av免费在线| 成人av资源在线观看| 国产 日韩 欧美大片| 国产成+人+日韩+欧美+亚洲 | 91色|porny| 99久久精品国产麻豆演员表| 成人免费高清在线观看| 成人中文字幕在线| 成人一级片在线观看| 国产91精品在线观看| 国产精品一区专区| 国产精品1区二区.| 国产成人精品午夜视频免费| 国产最新精品精品你懂的| 激情都市一区二区| 国产在线视频一区二区三区| 狠狠色狠狠色综合系列| 狠狠色综合色综合网络| 国产激情精品久久久第一区二区| 国产高清久久久久| 成人激情动漫在线观看| 成人91在线观看| 91丝袜国产在线播放| 色婷婷亚洲精品| 欧洲一区在线观看| 欧美日本在线一区| 欧美成人国产一区二区| 久久久综合精品| 国产精品午夜电影| 亚洲综合在线第一页| 亚洲成人激情av| 久久精品国产澳门| 成人开心网精品视频| 日本高清不卡一区| 3d成人动漫网站| 国产无一区二区| 亚洲免费观看在线视频| 日韩国产欧美视频| 国产高清不卡一区| 色琪琪一区二区三区亚洲区| 777色狠狠一区二区三区| 精品久久久久久久久久久久久久久| 久久久亚洲国产美女国产盗摄| 国产精品色噜噜| 亚洲超丰满肉感bbw| 国内外成人在线视频| 91美女在线看| 欧美大片在线观看一区| 《视频一区视频二区| 调教+趴+乳夹+国产+精品| 韩国精品主播一区二区在线观看| av不卡在线播放| 欧美一区二区三区免费| 国产精品无圣光一区二区| 午夜精品一区二区三区三上悠亚| 国内精品伊人久久久久av一坑| 91在线免费播放| 欧美本精品男人aⅴ天堂| 亚洲免费观看高清完整版在线 | 久草这里只有精品视频| 波多野结衣中文字幕一区二区三区| 欧美色视频在线| 国产精品五月天| 日本女人一区二区三区| 91免费看片在线观看| 欧美变态口味重另类| 亚洲主播在线观看| 高清beeg欧美| 日韩欧美在线1卡| 综合久久一区二区三区| 精品亚洲免费视频| 欧美视频在线不卡| 国产精品亲子乱子伦xxxx裸| 蓝色福利精品导航| 欧美人动与zoxxxx乱| 成人欧美一区二区三区黑人麻豆| 久久99精品网久久| 欧美高清性hdvideosex| 亚洲图片另类小说| 国产aⅴ综合色| 精品国产一二三| 日韩福利视频网| 欧美做爰猛烈大尺度电影无法无天| 久久久精品国产免大香伊| 青草av.久久免费一区| 欧美影院一区二区| 亚洲少妇30p| 成人av网站在线观看| 久久综合色婷婷| 九一久久久久久| 欧美一区二区黄色| 日韩和欧美一区二区三区| 在线免费不卡电影| 亚洲精品国产第一综合99久久| 粉嫩蜜臀av国产精品网站| 久久亚洲一区二区三区明星换脸| 日本aⅴ亚洲精品中文乱码| 欧美日韩中文国产| 亚洲国产美女搞黄色| 在线观看av一区| 亚洲一二三区在线观看| 91福利视频久久久久| 亚洲精品福利视频网站| 色综合久久天天综合网| 亚洲欧洲av色图| 色一区在线观看| 一区二区三区波多野结衣在线观看| www.成人网.com| 中文字幕制服丝袜一区二区三区| 大胆亚洲人体视频| 中文字幕日韩欧美一区二区三区| 成人免费视频caoporn| 国产精品入口麻豆原神| 成人18精品视频| 亚洲欧美激情小说另类| 在线观看免费一区| 亚洲18女电影在线观看| 欧美一卡2卡3卡4卡| 麻豆成人av在线| 欧美精品一区二区三区蜜桃视频| 国产精品一二三四| 国产精品妹子av| 91福利在线观看| 99国产精品99久久久久久| 夜夜精品视频一区二区| 欧美中文字幕久久| 男人的天堂久久精品| 久久久精品一品道一区| 99精品久久99久久久久| 亚洲一区二区av在线| 7777精品伊人久久久大香线蕉经典版下载 | 美腿丝袜亚洲综合| 国产色婷婷亚洲99精品小说| 成人av网在线| 亚洲bt欧美bt精品| 精品对白一区国产伦| av动漫一区二区| 亚洲h在线观看| 久久嫩草精品久久久精品| 91视频精品在这里| 午夜精品福利久久久| 26uuu成人网一区二区三区| 国产一区二区三区在线观看精品| 中文字幕高清一区| 在线国产亚洲欧美| 久久99九九99精品| ㊣最新国产の精品bt伙计久久| 欧美视频在线播放| 国产大片一区二区| 五月综合激情日本mⅴ| 国产视频一区在线播放| 欧美色图片你懂的| 国产jizzjizz一区二区| 亚洲午夜av在线| 国产精品色哟哟| 日韩欧美不卡在线观看视频| 成人av在线资源网站| 免费黄网站欧美| 亚洲美女精品一区| 精品国产免费人成电影在线观看四季| 91影院在线观看| 国内精品国产成人| 午夜精品一区二区三区免费视频 | 日韩一区欧美二区| 中文成人av在线| 日韩视频免费直播| 色综合天天综合在线视频| 九九视频精品免费| 亚洲曰韩产成在线| 国产精品视频麻豆| 日韩欧美精品在线视频| 欧美亚洲综合网| jlzzjlzz亚洲日本少妇|