ap_optind          14 sapi/isapi/stresstest/getopt.c int ap_optind = 1;
ap_optind          52 sapi/isapi/stresstest/getopt.c     if (ap_optind >= argc)
ap_optind          54 sapi/isapi/stresstest/getopt.c     if (!dash && (argv[ap_optind][0] !=  '-'))
ap_optind          56 sapi/isapi/stresstest/getopt.c     if (!dash && (argv[ap_optind][0] ==  '-') && !argv[ap_optind][1])
ap_optind          64 sapi/isapi/stresstest/getopt.c     if ((argv[ap_optind][0] == '-') && (argv[ap_optind][1] == '-'))
ap_optind          67 sapi/isapi/stresstest/getopt.c         ap_optind++;
ap_optind          72 sapi/isapi/stresstest/getopt.c         assert((argv[ap_optind][0] == '-') && argv[ap_optind][1]);
ap_optind          79 sapi/isapi/stresstest/getopt.c     if (argv[ap_optind][optchr] == ':')
ap_optind          82 sapi/isapi/stresstest/getopt.c         ap_optind++;
ap_optind          83 sapi/isapi/stresstest/getopt.c         return(ap_optiserr(argc, argv, ap_optind-1, optstr, optchr, OPTERRCOLON));
ap_optind          85 sapi/isapi/stresstest/getopt.c     if (!(cp = strchr(optstr, argv[ap_optind][optchr])))
ap_optind          87 sapi/isapi/stresstest/getopt.c         int errind = ap_optind;
ap_optind          90 sapi/isapi/stresstest/getopt.c         if (!argv[ap_optind][optchr+1])
ap_optind          93 sapi/isapi/stresstest/getopt.c             ap_optind++;
ap_optind         104 sapi/isapi/stresstest/getopt.c         if(!argv[ap_optind][2]) {
ap_optind         105 sapi/isapi/stresstest/getopt.c             ap_optind++;
ap_optind         106 sapi/isapi/stresstest/getopt.c             if (ap_optind == argc)
ap_optind         107 sapi/isapi/stresstest/getopt.c                 return(ap_optiserr(argc, argv, ap_optind-1, optstr, optchr, OPTERRARG));
ap_optind         108 sapi/isapi/stresstest/getopt.c             ap_optarg = argv[ap_optind++];
ap_optind         112 sapi/isapi/stresstest/getopt.c             ap_optarg = &argv[ap_optind][2];
ap_optind         113 sapi/isapi/stresstest/getopt.c             ap_optind++;
ap_optind         119 sapi/isapi/stresstest/getopt.c         if (!argv[ap_optind][optchr+1])
ap_optind         122 sapi/isapi/stresstest/getopt.c             ap_optind++;
ap_optind         138 sapi/isapi/stresstest/getopt.c       extern int ap_optind;
ap_optind         170 sapi/isapi/stresstest/getopt.c       for ( ; ap_optind < argc; ap_optind++)
ap_optind         171 sapi/isapi/stresstest/getopt.c            (void)printf("%s\n", argv[ap_optind]);
ap_optind           6 sapi/isapi/stresstest/getopt.h extern int ap_optind;