Remove extra copy of new debug code that somehow got inserted twice.
[exim.git] / src / src / lookups / sqlite.h
CommitLineData
13b685f9
PH
1/* $Cambridge: exim/src/src/lookups/sqlite.h,v 1.1 2005/08/01 13:20:28 ph10 Exp $ */
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
7/* Copyright (c) University of Cambridge 1995 - 2005 */
8/* See the file NOTICE for conditions of use and distribution. */
9
10/* Header for the sqlite lookup */
11
12extern void *sqlite_open(uschar *, uschar **);
13extern int sqlite_find(void *, uschar *, uschar *, int, uschar **,
14 uschar **, BOOL *);
15extern void sqlite_close(void *);
16extern uschar *sqlite_quote(uschar *, uschar *);
17
18/* End of lookups/sqlite.h */