| 600 | #endif |
| 601 | |
| 602 | void ShellQuoteArg(TString& dst, TStringBuf argument) { |
| 603 | dst.append("\""); |
| 604 | TStringBuf l, r; |
| 605 | while (argument.TrySplit('"', l, r)) { |
| 606 | dst.append(l); |
| 607 | dst.append("\\\""); |
| 608 | argument = r; |
| 609 | } |
| 610 | dst.append(argument); |
| 611 | dst.append("\""); |
| 612 | } |
| 613 | |
| 614 | void ShellQuoteArgSp(TString& dst, TStringBuf argument) { |
| 615 | dst.append(' '); |
no test coverage detected