Lines Matching refs:psz
96 char *psz = NULL; in getopt() local
101 psz = &(argv[iArg][0]); in getopt()
102 if (*psz == '-' || *psz == '/') { in getopt()
107 psz = strchr(pszValidOpts, chOpt); in getopt()
108 if (psz != NULL) { in getopt()
110 if (psz[1] == ':') { in getopt()
112 psz = &(argv[iArg][2]); in getopt()
113 if (*psz == '\0') { in getopt()
116 psz = in getopt()
120 if (*psz == '-' in getopt()
121 || *psz == in getopt()
140 psz; in getopt()
147 pszParam = psz; in getopt()