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