Home
last modified time | relevance | path

Searched refs:has_equal (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/bsd/libevent/dist/WIN32-Code/
H A Dgetopt_long.c176 char *current_argv = nargv[optind++] + 2, *has_equal; local
183 if ((has_equal = strchr(current_argv, '=')) != NULL) {
184 current_argv_len = has_equal - current_argv;
185 has_equal++;
203 if (has_equal)
204 optarg = has_equal;
/netbsd-src/external/bsd/libfido2/dist/openbsd-compat/
H A Dgetopt_long.c170 char *current_argv, *has_equal; in parse_long_options() local
179 if ((has_equal = strchr(current_argv, '=')) != NULL) { in parse_long_options()
181 current_argv_len = has_equal - current_argv; in parse_long_options()
182 has_equal++; in parse_long_options()
217 && has_equal) { in parse_long_options()
232 if (has_equal) in parse_long_options()
233 optarg = has_equal; in parse_long_options()
/netbsd-src/lib/libc/stdlib/
H A Dgetopt_long.c358 char *current_argv, *has_equal; in getopt_long() local
382 if ((has_equal = strchr(current_argv, '=')) != NULL) { in getopt_long()
384 current_argv_len = has_equal - current_argv; in getopt_long()
385 has_equal++; in getopt_long()
417 && has_equal) { in getopt_long()
433 if (has_equal) in getopt_long()
434 optarg = has_equal; in getopt_long()
/netbsd-src/external/bsd/file/dist/src/
H A Dgetopt_long.c383 char *current_argv, *has_equal; local
407 if ((has_equal = strchr(current_argv, '=')) != NULL) {
409 current_argv_len = has_equal - current_argv;
410 has_equal++;
442 && has_equal) {
458 if (has_equal)
459 optarg = has_equal;