mirror of
https://github.com/fluencelabs/sqlite
synced 2025-04-24 17:02:14 +00:00
12 lines
203 B
C
12 lines
203 B
C
#include "sqlite3.h"
|
|
|
|
extern sqlite3_vfs *sqlite3_demovfs(void);
|
|
|
|
int sqlite3_os_init() {
|
|
sqlite3_vfs_register(sqlite3_demovfs(), 0);
|
|
return SQLITE_OK;
|
|
}
|
|
|
|
int sqlite3_os_end() {
|
|
return SQLITE_OK;
|
|
} |