blob: 0f7c092156b192b991b5f26b827c13833009e254 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <util/generic/fwd.h>
namespace NYql {
// Supports only ' ' as a whitespace and '\n' as a newline.
// Like a https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.text/trim-indent.html.
// Usefull only at unit tests and with raw string literals.
TString TrimIndent(TStringBuf input);
} // namespace NYql
|