ddcp 0.2.4

Distributed decentralized database-to-database copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CRSQLITE_H
#define CRSQLITE_H

#include "sqlite3ext.h"
SQLITE_EXTENSION_INIT3

#include <stdint.h>

#include "tableinfo.h"

#ifndef UNIT_TEST
#define STATIC static
#else
#define STATIC
#endif

#endif