mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
11 lines
115 B
C++
11 lines
115 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
|
|
namespace DB::UTF8
|
|
{
|
|
|
|
UInt8 isValidUTF8(const UInt8 * data, UInt64 len);
|
|
|
|
}
|