UserInterface/RB_Find_In_Argv_Parameterized_Option [ Functions ]

FUNCTION

Search for an option of the form

     --a_option_name a_value

in argv. The function is used to look for the

     --rc  

option that can be used to specify an alternate robodoc configuration file.

SYNOPSIS

char               *RB_Find_In_Argv_Parameterized_Option(
    int argc,
    char **argv,
    char *optionname )

INPUTS

RESULT

NULL if the option is not found, a pointer to the value otherwise.

NOTES

Results in a Panic if the option is found but no value is specified.

SOURCE

{
    return General_Find_Parameterized_Option( argc, argv, optionname );
}