18 lines
366 B
C++
18 lines
366 B
C++
//===----------------------------------------------------------------------===//
|
|
// DuckDB
|
|
//
|
|
// icu-datediff.hpp
|
|
//
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#pragma once
|
|
|
|
namespace duckdb {
|
|
|
|
class ExtensionLoader;
|
|
|
|
void RegisterICUDateSubFunctions(ExtensionLoader &loader);
|
|
|
|
} // namespace duckdb
|