ddcp 0.2.4

Distributed decentralized database-to-database copy
1
2
3
4
5
6
7
8
9
10
/*
  This file is appended to the end of a sqlite3.c amalgammation
  file to include crsqlite functions statically in
  a build. This is used for the demo CLI and WASM implementations.
*/
#include "ext.h"

int core_init(const char *dummy) {
  return sqlite3_auto_extension((void *)sqlite3_crsqlite_init);
}