mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-20 17:34:15 +00:00
15 lines
235 B
C
15 lines
235 B
C
#include <stdbool.h>
|
|
|
|
#include "sqlite3.h"
|
|
|
|
int main() {
|
|
int rc = sqlite3_initialize();
|
|
if (rc != SQLITE_OK) return 1;
|
|
}
|
|
|
|
sqlite3_vfs *os_vfs();
|
|
|
|
int sqlite3_os_init() {
|
|
return sqlite3_vfs_register(os_vfs(), /*default=*/true);
|
|
}
|