Lines Matching defs:curopt
253 const char *curopt, *oopt;
307 curopt = pw_modules[i].args;
308 while (*curopt != '\0') {
309 if ((oopt = strchr(optstring, *curopt)) == NULL) {
310 optstring[j++] = *curopt;
311 if (curopt[1] == ':') {
312 curopt++;
313 optstring[j++] = *curopt;
316 } else if ((oopt[1] == ':' && curopt[1] != ':') ||
317 (oopt[1] != ':' && curopt[1] == ':')) {
320 "%c argument format.", curopt[0]);
322 curopt++;