diff options
author | drh <drh@noemail.net> | 2001-04-07 15:24:33 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-04-07 15:24:33 +0000 |
commit | d1bf3512fa7b76d6da2d385c89c4a52f3b4d33c3 (patch) | |
tree | 033bf39aa70cd904bb405548292d0b7282811eb5 /src/sqliteInt.h | |
parent | d21afef769dd6318d7963bcd594d00b4e153de60 (diff) | |
download | sqlite-d1bf3512fa7b76d6da2d385c89c4a52f3b4d33c3.tar.gz sqlite-d1bf3512fa7b76d6da2d385c89c4a52f3b4d33c3.zip |
Added new tests (CVS 206)
FossilOrigin-Name: 2507ec40610d8034ccf9dcb58a16934065e6f120
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 04de02079..c78ba2174 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -23,7 +23,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.39 2001/04/04 21:10:19 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.40 2001/04/07 15:24:33 drh Exp $ */ #include "sqlite.h" #include "dbbe.h" @@ -432,3 +432,4 @@ char *sqliteDbbeNameToFile(const char*,const char*,const char*); void sqliteBeginTransaction(Parse*); void sqliteCommitTransaction(Parse*); void sqliteRollbackTransaction(Parse*); +char *sqlite_mprintf(const char *, ...); |