| 357 | } |
| 358 | |
| 359 | std::string QuoteIfNecessary(std::string str) |
| 360 | { |
| 361 | if (str.find(' ') == std::string::npos) |
| 362 | { |
| 363 | return str; |
| 364 | } |
| 365 | else |
| 366 | { |
| 367 | return "'" + str + "'"; |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | /*---------------------------------------------------------------------------------------------------------*\ |
| 372 | | Option processing functions | |
no test coverage detected