ClickHouse/dbms/Functions/URL/tldLookup.h
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

16 lines
341 B
C++

#pragma once
// Definition of the class generated by gperf, present on gperf/tldLookup.gperf
class TopLevelDomainLookupHash
{
private:
static inline unsigned int hash(const char *str, size_t len);
public:
static const char * isValid(const char *str, size_t len);
};
namespace DB
{
using tldLookup = TopLevelDomainLookupHash;
}