Prints a (const) char array of 'len' elements, starting at address 'begin'.
| 8821 | |
| 8822 | // Prints a (const) char array of 'len' elements, starting at address 'begin'. |
| 8823 | void UniversalPrintArray(const char* begin, size_t len, ostream* os) { |
| 8824 | PrintCharsAsStringTo(begin, len, os); |
| 8825 | } |
| 8826 | |
| 8827 | // Prints the given array of wide characters to the ostream. |
| 8828 | // The array starts at *begin, the length is len, it may include L'\0' |
nothing calls this directly
no test coverage detected