Searched defs:long_options (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/upstream-freebsd/lib/libc/stdlib/
H A Dgetopt_long.c189 * Returns -1 if short_too is set and the option does not match long_options.
193 const struct option *long_options, int *idx, int short_too, int flags)
232 for (i = 0; long_options[i].name; i++) {
234 if (strncmp(current_argv, long_options[i].name,
238 if (strlen(long_options[i].name) == current_argv_len) {
254 long_options[i].has_arg !=
255 long_options[match].has_arg ||
256 long_options[i].flag != long_options[match].flag ||
257 long_options[
192 parse_long_options(char * const *nargv, const char *options, const struct option *long_options, int *idx, int short_too, int flags) argument
357 getopt_internal(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx, int flags) argument
599 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
612 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]

Completed in 63 milliseconds