1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

:-) (CVS 138)

FossilOrigin-Name: c6b71d9b4b09243401072eaa278fd1b9757a9c3d
This commit is contained in:
drh
2000-08-22 13:40:18 +00:00
parent 80afdca0d8
commit b217a57eb9
7 changed files with 46 additions and 21 deletions

View File

@@ -26,7 +26,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.16 2000/08/02 13:47:42 drh Exp $
** $Id: main.c,v 1.17 2000/08/22 13:40:19 drh Exp $
*/
#include "sqliteInt.h"
@@ -184,6 +184,11 @@ static int sqliteInit(sqlite *db, char **pzErrMsg){
return rc;
}
/*
** The version of the library
*/
const char sqlite_version[] = SQLITE_VERSION_STRING;
/*
** Open a new SQLite database. Construct an "sqlite" structure to define
** the state of this database and return a pointer to that structure.