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

/external/syslinux/gpxe/src/core/
H A Dgetopt.c96 * @v opttext Option text within current argv[] element
102 const char *opttext,
109 if ( strncmp ( opttext, longopt->name, optlen ) != 0 )
113 if ( opttext[optlen] == '=' ) {
114 argument = &opttext[ optlen + 1 ];
115 } else if ( opttext[optlen] ) {
160 * @v opttext Option text within current argv[] element
166 const char *opttext, int shortopt,
172 if ( *opttext != shortopt )
176 opttext
101 match_long_option( int argc, char * const argv[], const char *opttext, const struct option *longopt, int *option ) argument
165 match_short_option( int argc, char * const argv[], const char *opttext, int shortopt, enum getopt_argument_requirement has_arg, int *option ) argument
226 const char *opttext = argv[optind]; local
[all...]

Completed in 170 milliseconds