| 27 | } |
| 28 | |
| 29 | std::string ShellQuoteIfNeed(const std::string& str, char quote_char) |
| 30 | { |
| 31 | if (ShellIsQuoteNeed(str)) |
| 32 | return ShellQuote(str, quote_char); |
| 33 | return str; |
| 34 | } |
| 35 | |
| 36 | bool ShellUnquote(const std::string& str, std::string* result) |
| 37 | { |
no test coverage detected