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