File: config.c

package info (click to toggle)
haskell-persistent-sqlite 2.13.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,436 kB
  • sloc: ansic: 159,841; haskell: 1,754; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (6)
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);
}