/* This file defines auxiliary functions to help dealing with sqlite vararg stuff. */ #include int persistent_sqlite_set_log(void (*logFn)(void*, int, const char*), void* arg) { return sqlite3_config(SQLITE_CONFIG_LOG, logFn, arg); }