mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
13 lines
226 B
C
13 lines
226 B
C
#include "sqlite3.h"
|
|
|
|
int main() {
|
|
int rc = sqlite3_initialize();
|
|
if (rc != SQLITE_OK) return -1;
|
|
}
|
|
|
|
sqlite3_vfs *sqlite3_demovfs();
|
|
|
|
int sqlite3_os_init() {
|
|
return sqlite3_vfs_register(sqlite3_demovfs(), /*default=*/1);
|
|
}
|