ClickHouse/dbms/Formats/verbosePrintString.h

15 lines
259 B
C++
Raw Normal View History

#pragma once
namespace DB
{
2017-06-01 13:41:58 +00:00
class WriteBuffer;
/** Print string in double quotes and with control characters in "<NAME>" form - for output diagnostic info to user.
*/
2017-06-01 13:41:58 +00:00
void verbosePrintString(const char * begin, const char * end, WriteBuffer & out);
}