blob: 58e5d1f1e4a38874c0832f58c96be6fbd919fb8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <util/generic/string.h>
#include <util/generic/vector.h>
namespace NSQLComplete {
TString FormatKeywords(const TVector<TString>& seq);
TString Quoted(TString content);
TString Unquoted(TString content);
} // namespace NSQLComplete
|