Searched refs:pArgString (Results 1 – 1 of 1) sorted by relevance
598 char *pArgString = NULL; /* where to start from next */ in getopt() local606 pArgString = pIndexPosition; in getopt()610 if (pArgString == NULL) { in getopt()621 pArgString = argv[optind++]; /* set this to the next argument ptr */ in getopt()623 if (('/' != *pArgString) && /* doesn't start with a slash or a dash? */ in getopt()624 ('-' != *pArgString)) { in getopt()632 if ((strcmp(pArgString, "-") == 0) || in getopt()633 (strcmp(pArgString, "--") == 0)) { in getopt()639 pArgString++; /* look past the / or - */ in getopt()642 if (':' == *pArgString) { /* is it a colon? */ in getopt()[all …]