1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2023 Anton Zhiyanov, MIT License // https://github.com/nalgeon/sqlean // Statistical functions for SQLite. #include "sqlite3ext.h" SQLITE_EXTENSION_INIT3 #include "stats/stats.h" int stats_init(sqlite3* db) { stats_scalar_init(db); stats_series_init(db); return SQLITE_OK; }