| 343 | } |
| 344 | |
| 345 | void replace( string& str, const string& from, const string& to ) { |
| 346 | size_t it = str.find(from); |
| 347 | if( it != string::npos ) { |
| 348 | str.replace(it, from.length(), to); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | void print_help() { |
| 353 | tout |
no test coverage detected