optchr             31 main/getopt.c  static int php_opt_error(int argc, char * const *argv, int oint, int optchr, int err, int show_err) /* {{{ */
optchr             35 main/getopt.c  		fprintf(stderr, "Error in argument %d, char %d: ", oint, optchr+1);
optchr             42 main/getopt.c  			fprintf(stderr, "option not found %c\n", argv[oint][optchr]);
optchr             45 main/getopt.c  			fprintf(stderr, "no argument for option %c\n", argv[oint][optchr]);
optchr             60 main/getopt.c  	static int optchr = 0;
optchr             68 main/getopt.c  		optchr = 0;
optchr            114 main/getopt.c  				return(php_opt_error(argc, argv, *optind-1, optchr, OPTERRARG, show_err));
optchr            120 main/getopt.c  		optchr = 0;
optchr            126 main/getopt.c  			optchr = 1;
optchr            129 main/getopt.c  		if (argv[*optind][optchr] == ':') {
optchr            132 main/getopt.c  			return (php_opt_error(argc, argv, *optind-1, optchr, OPTERRCOLON, show_err));
optchr            134 main/getopt.c  		arg_start = 1 + optchr;
optchr            141 main/getopt.c  				int errchr = optchr;
optchr            143 main/getopt.c  				if (!argv[*optind][optchr+1]) {
optchr            147 main/getopt.c  					optchr++;
optchr            151 main/getopt.c  			} else if (argv[*optind][optchr] == opts[php_optidx].opt_char) {
optchr            165 main/getopt.c  					return(php_opt_error(argc, argv, *optind-1, optchr, OPTERRARG, show_err));
optchr            183 main/getopt.c  			if (!argv[*optind][optchr+1])
optchr            188 main/getopt.c  				optchr++;