| 575 | // returns the resulting string. |
| 576 | template <class InputIterator> |
| 577 | std::string ShellEscapeCommandLine(InputIterator begin, const InputIterator& end) { |
| 578 | std::string result; |
| 579 | for (; begin != end; ++begin) { |
| 580 | if (!result.empty()) result.append(" "); |
| 581 | result.append(ShellEscape(*begin)); |
| 582 | } |
| 583 | return result; |
| 584 | } |
| 585 | |
| 586 | // Reads at most bytes_to_read from binary_string and writes it to |
| 587 | // ascii_string in lower case hex. |
nothing calls this directly
no test coverage detected