| 501 | } |
| 502 | |
| 503 | const CommandLineOptionDefinition* FindOption(const CommandLineOptionDefinition* options, char shortName) |
| 504 | { |
| 505 | for (const CommandLineOptionDefinition* option = options; option->Type != 255; option++) |
| 506 | { |
| 507 | if (option->ShortName == shortName) |
| 508 | { |
| 509 | return option; |
| 510 | } |
| 511 | } |
| 512 | return nullptr; |
| 513 | } |
| 514 | |
| 515 | const CommandLineOptionDefinition* FindOption(const CommandLineOptionDefinition* options, const char* longName) |
| 516 | { |
no test coverage detected