* @ret value String value
* @ret rc Return status code
*/
-int parse_string ( const char *text, const char **value ) {
+int parse_string ( char *text, char **value ) {
/* Sanity check */
assert ( text != NULL );
* @ret value Integer value
* @ret rc Return status code
*/
-int parse_integer ( const char *text, unsigned int *value ) {
+int parse_integer ( char *text, unsigned int *value ) {
char *endp;
/* Sanity check */
* @ret netdev Network device
* @ret rc Return status code
*/
-int parse_netdev ( const char *text, struct net_device **netdev ) {
+int parse_netdev ( char *text, struct net_device **netdev ) {
/* Sanity check */
assert ( text != NULL );
* @ret menu Menu
* @ret rc Return status code
*/
-int parse_menu ( const char *text, struct menu **menu ) {
+int parse_menu ( char *text, struct menu **menu ) {
/* Find menu */
*menu = find_menu ( text );
* @ret flag Flag to set
* @ret rc Return status code
*/
-int parse_flag ( const char *text __unused, int *flag ) {
+int parse_flag ( char *text __unused, int *flag ) {
/* Set flag */
*flag = 1;
* @ret key Key
* @ret rc Return status code
*/
-int parse_key ( const char *text, unsigned int *key ) {
+int parse_key ( char *text, unsigned int *key ) {
/* Interpret single characters as being a literal key character */
if ( text[0] && ! text[1] ) {
char shortopts[ cmd->num_options * 3 /* possible "::" */ + 1 /* "h" */
+ 1 /* NUL */ ];
unsigned int shortopt_idx = 0;
- int ( * parse ) ( const char *text, void *value );
+ int ( * parse ) ( char *text, void *value );
void *value;
unsigned int i;
unsigned int j;
* @ret port Fibre Channel port
* @ret rc Return status code
*/
-static int parse_fc_port ( const char *text, struct fc_port **port ) {
+static int parse_fc_port ( char *text, struct fc_port **port ) {
/* Sanity check */
assert ( text != NULL );
* @ret port_id Fibre Channel port ID
* @ret rc Return status code
*/
-static int parse_fc_port_id ( const char *text, struct fc_port_id *port_id ) {
+static int parse_fc_port_id ( char *text, struct fc_port_id *port_id ) {
int rc;
/* Sanity check */
* @ret handler Fibre Channel ELS handler
* @ret rc Return status code
*/
-static int parse_fc_els_handler ( const char *text,
- struct fc_els_handler **handler ) {
+static int parse_fc_els_handler ( char *text, struct fc_els_handler **handler ){
for_each_table_entry ( (*handler), FC_ELS_HANDLERS ) {
if ( strcasecmp ( (*handler)->name, text ) == 0 )
/** "img{single}" options */
struct imgsingle_options {
/** Image name */
- const char *name;
+ char *name;
/** Replace image */
int replace;
/** Free image after execution */
/** "imgverify" options */
struct imgverify_options {
/** Required signer common name */
- const char *signer;
+ char *signer;
/** Keep signature after verification */
int keep;
};
/** "menu" options */
struct menu_options {
/** Name */
- const char *name;
+ char *name;
/** Delete */
int delete;
};
/** "item" options */
struct item_options {
/** Menu name */
- const char *menu;
+ char *menu;
/** Shortcut key */
unsigned int key;
/** Use as default */
/** "choose" options */
struct choose_options {
/** Menu name */
- const char *menu;
+ char *menu;
/** Timeout */
unsigned int timeout;
/** Default selection */
- const char *select;
+ char *select;
/** Keep menu */
int keep;
};
* @v value Option value to fill in
* @ret rc Return status code
*/
- int ( * parse ) ( const char *text, void *value );
+ int ( * parse ) ( char *text, void *value );
};
/**
* @ret _parse Generic option parser
*/
#define OPTION_PARSER( _struct, _field, _parse ) \
- ( ( int ( * ) ( const char *text, void *value ) ) \
+ ( ( int ( * ) ( char *text, void *value ) ) \
( ( ( ( typeof ( _parse ) * ) NULL ) == \
- ( ( int ( * ) ( const char *text, \
+ ( ( int ( * ) ( char *text, \
typeof ( ( ( _struct * ) NULL )->_field ) * ) ) \
NULL ) ) ? _parse : _parse ) )
.usage = _usage, \
}
-extern int parse_string ( const char *text, const char **value );
-extern int parse_integer ( const char *text, unsigned int *value );
-extern int parse_netdev ( const char *text, struct net_device **netdev );
-extern int parse_menu ( const char *text, struct menu **menu );
-extern int parse_flag ( const char *text __unused, int *flag );
-extern int parse_key ( const char *text, unsigned int *key );
+extern int parse_string ( char *text, char **value );
+extern int parse_integer ( char *text, unsigned int *value );
+extern int parse_netdev ( char *text, struct net_device **netdev );
+extern int parse_menu ( char *text, struct menu **menu );
+extern int parse_flag ( char *text __unused, int *flag );
+extern int parse_key ( char *text, unsigned int *key );
extern void print_usage ( struct command_descriptor *cmd, char **argv );
extern int reparse_options ( int argc, char **argv,
struct command_descriptor *cmd, void *opts );