| 30 | |
| 31 | |
| 32 | static const Option_def* find_option (const Options_list& options, const std::string& name) |
| 33 | { |
| 34 | for (Options_list::const_iterator opt(options.begin()); opt != options.end(); ++opt) { |
| 35 | if (opt->name == name) { |
| 36 | return &*opt; |
| 37 | } |
| 38 | } |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | int parse_options (const Options_list& options, int argc, const char** argv) |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected