File: config.c

package info (click to toggle)
haskell-persistent-sqlite 2.13.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,440 kB
  • sloc: ansic: 159,841; haskell: 1,753; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
/* This file defines auxiliary functions to help dealing with sqlite vararg stuff. */
#include <sqlite3.h>

int persistent_sqlite_set_log(void (*logFn)(void*, int, const char*), void* arg) {
  return sqlite3_config(SQLITE_CONFIG_LOG, logFn, arg);
}