blob: 26bd663d559281e8dd172f39af9e2f3da83dafe4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
namespace DB
{
class WriteBuffer;
/** Print string in double quotes and with control characters in "<NAME>" form - for output diagnostic info to user.
*/
void verbosePrintString(const char * begin, const char * end, WriteBuffer & out);
}
|