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

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

?? getopt.c

?? bison 2.0 主要可以用來做語法分析用的
?? C
?? 第 1 頁 / 共 3 頁
字號:
	d->__first_nonopt = d->optind;      if (d->__ordering == PERMUTE)	{	  /* If we have just processed some options following some non-options,	     exchange them so that the options come first.  */	  if (d->__first_nonopt != d->__last_nonopt	      && d->__last_nonopt != d->optind)	    exchange ((char **) argv, d);	  else if (d->__last_nonopt != d->optind)	    d->__first_nonopt = d->optind;	  /* Skip any additional non-options	     and extend the range of non-options previously skipped.  */	  while (d->optind < argc && NONOPTION_P)	    d->optind++;	  d->__last_nonopt = d->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 (d->optind != argc && !strcmp (argv[d->optind], "--"))	{	  d->optind++;	  if (d->__first_nonopt != d->__last_nonopt	      && d->__last_nonopt != d->optind)	    exchange ((char **) argv, d);	  else if (d->__first_nonopt == d->__last_nonopt)	    d->__first_nonopt = d->optind;	  d->__last_nonopt = argc;	  d->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 (d->optind == argc)	{	  /* Set the next-arg-index to point at the non-options	     that we previously skipped, so the caller will digest them.  */	  if (d->__first_nonopt != d->__last_nonopt)	    d->optind = d->__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 (d->__ordering == REQUIRE_ORDER)	    return -1;	  d->optarg = argv[d->optind++];	  return 1;	}      /* We have found another option-ARGV-element.	 Skip the initial punctuation.  */      d->__nextchar = (argv[d->optind] + 1		  + (longopts != NULL && argv[d->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[d->optind][1] == '-'	  || (long_only && (argv[d->optind][2]			    || !strchr (optstring, argv[d->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 = d->__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, d->__nextchar, nameend - d->__nextchar))	  {	    if ((unsigned int) (nameend - d->__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 if (long_only		     || pfound->has_arg != p->has_arg		     || pfound->flag != p->flag		     || pfound->val != p->val)	      /* Second or later nonexact match found.  */	      ambig = 1;	  }      if (ambig && !exact)	{	  if (print_errors)	    {#if defined _LIBC && defined USE_IN_LIBIO	      char *buf;	      if (__asprintf (&buf, _("%s: option `%s' is ambiguous\n"),			      argv[0], argv[d->optind]) >= 0)		{		  _IO_flockfile (stderr);		  int old_flags2 = ((_IO_FILE *) stderr)->_flags2;		  ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;		  if (_IO_fwide (stderr, 0) > 0)		    __fwprintf (stderr, L"%s", buf);		  else		    fputs (buf, stderr);		  ((_IO_FILE *) stderr)->_flags2 = old_flags2;		  _IO_funlockfile (stderr);		  free (buf);		}#else	      fprintf (stderr, _("%s: option `%s' is ambiguous\n"),		       argv[0], argv[d->optind]);#endif	    }	  d->__nextchar += strlen (d->__nextchar);	  d->optind++;	  d->optopt = 0;	  return '?';	}      if (pfound != NULL)	{	  option_index = indfound;	  d->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)		d->optarg = nameend + 1;	      else		{		  if (print_errors)		    {#if defined _LIBC && defined USE_IN_LIBIO		      char *buf;		      int n;#endif		      if (argv[d->optind - 1][1] == '-')			{			  /* --option */#if defined _LIBC && defined USE_IN_LIBIO			  n = __asprintf (&buf, _("\%s: option `--%s' doesn't allow an argument\n"),					  argv[0], pfound->name);#else			  fprintf (stderr, _("\%s: option `--%s' doesn't allow an argument\n"),				   argv[0], pfound->name);#endif			}		      else			{			  /* +option or -option */#if defined _LIBC && defined USE_IN_LIBIO			  n = __asprintf (&buf, _("\%s: option `%c%s' doesn't allow an argument\n"),					  argv[0], argv[d->optind - 1][0],					  pfound->name);#else			  fprintf (stderr, _("\%s: option `%c%s' doesn't allow an argument\n"),				   argv[0], argv[d->optind - 1][0],				   pfound->name);#endif			}#if defined _LIBC && defined USE_IN_LIBIO		      if (n >= 0)			{			  _IO_flockfile (stderr);			  int old_flags2 = ((_IO_FILE *) stderr)->_flags2;			  ((_IO_FILE *) stderr)->_flags2			    |= _IO_FLAGS2_NOTCANCEL;			  if (_IO_fwide (stderr, 0) > 0)			    __fwprintf (stderr, L"%s", buf);			  else			    fputs (buf, stderr);			  ((_IO_FILE *) stderr)->_flags2 = old_flags2;			  _IO_funlockfile (stderr);			  free (buf);			}#endif		    }		  d->__nextchar += strlen (d->__nextchar);		  d->optopt = pfound->val;		  return '?';		}	    }	  else if (pfound->has_arg == 1)	    {	      if (d->optind < argc)		d->optarg = argv[d->optind++];	      else		{		  if (print_errors)		    {#if defined _LIBC && defined USE_IN_LIBIO		      char *buf;		      if (__asprintf (&buf, _("\%s: option `%s' requires an argument\n"),				      argv[0], argv[d->optind - 1]) >= 0)			{			  _IO_flockfile (stderr);			  int old_flags2 = ((_IO_FILE *) stderr)->_flags2;			  ((_IO_FILE *) stderr)->_flags2			    |= _IO_FLAGS2_NOTCANCEL;			  if (_IO_fwide (stderr, 0) > 0)			    __fwprintf (stderr, L"%s", buf);			  else			    fputs (buf, stderr);			  ((_IO_FILE *) stderr)->_flags2 = old_flags2;			  _IO_funlockfile (stderr);			  free (buf);			}#else		      fprintf (stderr,			       _("%s: option `%s' requires an argument\n"),			       argv[0], argv[d->optind - 1]);#endif		    }		  d->__nextchar += strlen (d->__nextchar);		  d->optopt = pfound->val;		  return optstring[0] == ':' ? ':' : '?';		}	    }	  d->__nextchar += strlen (d->__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[d->optind][1] == '-'	  || strchr (optstring, *d->__nextchar) == NULL)	{	  if (print_errors)	    {#if defined _LIBC && defined USE_IN_LIBIO	      char *buf;	      int n;#endif	      if (argv[d->optind][1] == '-')		{		  /* --option */#if defined _LIBC && defined USE_IN_LIBIO		  n = __asprintf (&buf, _("%s: unrecognized option `--%s'\n"),				  argv[0], d->__nextchar);#else		  fprintf (stderr, _("%s: unrecognized option `--%s'\n"),			   argv[0], d->__nextchar);#endif		}	      else		{		  /* +option or -option */#if defined _LIBC && defined USE_IN_LIBIO		  n = __asprintf (&buf, _("%s: unrecognized option `%c%s'\n"),				  argv[0], argv[d->optind][0], d->__nextchar);#else		  fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),			   argv[0], argv[d->optind][0], d->__nextchar);#endif		}#if defined _LIBC && defined USE_IN_LIBIO	      if (n >= 0)		{		  _IO_flockfile (stderr);		  int old_flags2 = ((_IO_FILE *) stderr)->_flags2;		  ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;		  if (_IO_fwide (stderr, 0) > 0)		    __fwprintf (stderr, L"%s", buf);		  else		    fputs (buf, stderr);		  ((_IO_FILE *) stderr)->_flags2 = old_flags2;		  _IO_funlockfile (stderr);		  free (buf);		}#endif	    }	  d->__nextchar = (char *) "";	  d->optind++;	  d->optopt = 0;	  return '?';	}    }  /* Look at and handle the next short option-character.  */  {    char c = *d->__nextchar++;    char *temp = strchr (optstring, c);    /* Increment `optind' when we start to process its last character.  */    if (*d->__nextchar == '\0')      ++d->optind;    if (temp == NULL || c == ':')      {	if (print_errors)	  {#if defined _LIBC && defined USE_IN_LIBIO	      char *buf;	      int n;#endif	    if (d->__posixly_correct)	      {		/* 1003.2 specifies the format of this message.  */#if defined _LIBC && defined USE_IN_LIBIO		n = __asprintf (&buf, _("%s: illegal option -- %c\n"),				argv[0], c);#else		fprintf (stderr, _("%s: illegal option -- %c\n"), argv[0], c);#endif	      }	    else	      {#if defined _LIBC && defined USE_IN_LIBIO		n = __asprintf (&buf, _("%s: invalid option -- %c\n"),				argv[0], c);#else		fprintf (stderr, _("%s: invalid option -- %c\n"), argv[0], c);#endif	      }#if defined _LIBC && defined USE_IN_LIBIO	    if (n >= 0)	      {		_IO_flockfile (stderr);		int old_flags2 = ((_IO_FILE *) stderr)->_flags2;		((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;		if (_IO_fwide (stderr, 0) > 0)		  __fwprintf (stderr, L"%s", buf);		else		  fputs (buf, stderr);		((_IO_FILE *) stderr)->_flags2 = old_flags2;		_IO_funlockfile (stderr);		free (buf);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产色产综合色产在线视频 | 99国内精品久久| 在线亚洲高清视频| 久久久久久久av麻豆果冻| 亚洲福利一区二区| 99精品一区二区| 久久亚洲精精品中文字幕早川悠里 | 欧美中文字幕久久| 国产欧美日产一区| 久久成人免费日本黄色| 在线精品亚洲一区二区不卡| 久久久精品人体av艺术| 青青草国产成人av片免费| 色屁屁一区二区| 国产精品久久精品日日| 精品亚洲成a人| 日韩欧美专区在线| 日本不卡不码高清免费观看 | 国产高清精品久久久久| 日韩视频免费观看高清完整版| 亚洲电影视频在线| 欧美日韩午夜影院| 亚洲一区二区三区四区五区中文| 99re这里都是精品| 国产精品国产自产拍高清av| 成人深夜在线观看| 国产精品麻豆欧美日韩ww| 成人午夜电影久久影院| 国产日韩欧美电影| 成人永久免费视频| 亚洲色图清纯唯美| 在线精品视频一区二区| 亚洲黄一区二区三区| 在线看国产一区| 日精品一区二区三区| 7777精品伊人久久久大香线蕉的| 日韩精品电影在线观看| 欧美一区二区精品久久911| 日本视频在线一区| 久久综合国产精品| 成人免费视频视频| 一区二区三区在线免费播放| 91福利视频久久久久| 亚洲第一久久影院| 日韩一区二区免费电影| 国产一区在线观看麻豆| 中文成人综合网| 一本色道**综合亚洲精品蜜桃冫| 亚洲一区在线观看视频| 欧美日韩国产经典色站一区二区三区| 亚洲综合免费观看高清在线观看| 欧美男男青年gay1069videost | 99久久婷婷国产综合精品| 亚洲人成网站在线| 欧美日产国产精品| 国产一区中文字幕| 亚洲男女一区二区三区| 欧美精品 国产精品| 国产麻豆精品theporn| 亚洲欧美另类小说| 日韩一区二区在线看片| 成人性视频免费网站| 亚洲国产一区视频| 26uuuu精品一区二区| 91浏览器打开| 精品一区二区三区的国产在线播放| 国产精品第四页| 欧美理论片在线| 福利电影一区二区三区| 亚洲国产精品尤物yw在线观看| 欧美成人高清电影在线| 色网站国产精品| 精品一区二区三区av| 亚洲国产成人高清精品| 国产午夜一区二区三区| 欧美午夜精品一区二区三区| 国产成人日日夜夜| 亚洲成人免费视频| 欧美国产欧美综合| 91精品国产免费| 99精品久久99久久久久| 精品一区二区三区香蕉蜜桃 | 国产不卡高清在线观看视频| 午夜久久久久久久久| 中文字幕日韩一区| 久久伊人蜜桃av一区二区| 欧美日韩综合在线| 播五月开心婷婷综合| 美腿丝袜亚洲色图| 三级欧美在线一区| 亚洲日本电影在线| 国产欧美一二三区| 久久青草国产手机看片福利盒子| 欧美三级中文字幕| 91麻豆精品视频| gogo大胆日本视频一区| 国产福利一区二区三区| 国产一区二区在线看| 日本不卡高清视频| 天天综合日日夜夜精品| 一区二区三区蜜桃| 亚洲精品伦理在线| 成人欧美一区二区三区小说| 国产日韩视频一区二区三区| 久久网站最新地址| 精品美女在线观看| 精品福利一二区| 日韩欧美国产一区二区在线播放| 欧美人体做爰大胆视频| 欧美久久久久中文字幕| 欧美日韩视频在线第一区 | 亚洲成av人片观看| 亚洲午夜精品网| 久久精品久久久精品美女| 日韩中文字幕亚洲一区二区va在线| 亚洲精品国产无套在线观| 中文字幕一区二区在线播放| 国产精品白丝在线| 亚洲欧美日韩电影| 亚洲综合成人在线视频| 一区二区三区成人| 午夜一区二区三区视频| 天天免费综合色| 日韩高清国产一区在线| 久久99精品国产.久久久久| 国产一区二区三区不卡在线观看| 经典三级视频一区| 国产成人综合视频| 91丨国产丨九色丨pron| 精品视频免费在线| 日韩午夜激情免费电影| 久久久九九九九| 亚洲欧美日韩一区二区 | 99精品热视频| 欧美午夜视频网站| 欧美一级国产精品| 国产精品毛片高清在线完整版| 尤物av一区二区| 青青草原综合久久大伊人精品优势| 蜜桃av一区二区| 99视频精品免费视频| 欧美日韩极品在线观看一区| 精品久久99ma| 亚洲美女偷拍久久| 久久99精品久久久久久动态图| 久久99精品久久久| 91视频国产资源| 精品成人a区在线观看| 亚洲人成网站影音先锋播放| 欧美aaaaaa午夜精品| 99在线热播精品免费| 欧美日韩国产123区| 欧美激情一区三区| 日韩不卡一区二区| 91精品在线观看入口| 国产精品青草综合久久久久99| 五月激情综合婷婷| 成人小视频在线| 欧美男同性恋视频网站| 亚洲欧洲日产国产综合网| 日韩专区一卡二卡| 色综合网站在线| 精品国产亚洲一区二区三区在线观看| 亚洲久草在线视频| 成人免费视频一区| 精品粉嫩aⅴ一区二区三区四区| 亚洲精选在线视频| 成人自拍视频在线观看| 日韩欧美的一区二区| 亚洲第一二三四区| 色婷婷亚洲精品| 国产精品免费视频一区| 国产一区二区三区日韩| 制服.丝袜.亚洲.另类.中文| 自拍av一区二区三区| 国产一区三区三区| 日韩欧美一区在线| 日韩黄色免费电影| 欧美在线观看禁18| 亚洲婷婷在线视频| www.欧美日韩| 中文字幕av一区二区三区免费看| 久久精品免费观看| 日韩一级高清毛片| 日韩二区三区在线观看| 欧美区视频在线观看| 午夜欧美在线一二页| 欧美日韩精品三区| 亚洲亚洲人成综合网络| voyeur盗摄精品| 中文一区二区完整视频在线观看| 国产精品99久久不卡二区| 日韩欧美国产一二三区| 全国精品久久少妇| 日韩一区二区精品葵司在线| 日本亚洲欧美天堂免费| 91精品国产欧美一区二区18| 美女久久久精品| 精品精品国产高清a毛片牛牛| 激情偷乱视频一区二区三区|