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

/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dparseopt.c197 char shortopts[ cmd->num_options * 3 /* possible "::" */ + 1 /* "h" */ local
214 shortopts[shortopt_idx++] = cmd->options[i].shortopt;
217 shortopts[shortopt_idx++] = ':';
221 shortopts[shortopt_idx++] = 'h';
222 shortopts[shortopt_idx++] = '\0';
223 assert ( shortopt_idx <= sizeof ( shortopts ) );
225 argv[0], shortopts, cmd->min_args, cmd->max_args, cmd->len );
228 while ( ( c = getopt_long ( argc, argv, shortopts, longopts,

Completed in 86 milliseconds