| 437 | } |
| 438 | |
| 439 | void CommandLineArguments::SetLineLength(unsigned int ll) |
| 440 | { |
| 441 | if (ll < 9 || ll > 1000) { |
| 442 | return; |
| 443 | } |
| 444 | this->LineLength = ll; |
| 445 | this->GenerateHelp(); |
| 446 | } |
| 447 | |
| 448 | char const* CommandLineArguments::GetArgv0() |
| 449 | { |
nothing calls this directly
no test coverage detected