Lines Matching refs:opt2
115 char *opt2, *save, *end;
141 opt2 = strdup(opt);
142 if (opt2 == NULL) {
147 save = opt2;
149 while (opt2 != NULL) {
150 end = strchr(opt2, ',');
155 if (strcasecmp("synth-all", opt2) == 0)
158 if (strcasecmp("compat", opt2) == 0)
161 if (strcasecmp("synth-none", opt2) == 0)
164 if (strcasecmp("binary", opt2) == 0)
167 if (strcasecmp("format", opt2) == 0)
170 if (strcasecmp("all", opt2) == 0)
173 if (strcasecmp("none", opt2) == 0)
176 opt2 = end;