aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2000-08-17 10:22:34 +0000
committerdrh <drh@noemail.net>2000-08-17 10:22:34 +0000
commit303aaa78f3225e30a05a853cd5cdb3058f22b67f (patch)
treed3db327d57016b4ee24f9f22b5c0c7f804dd8b9f /src
parent167a4b1c9073b10d265e190fc2fc7fd970c7b987 (diff)
downloadsqlite-303aaa78f3225e30a05a853cd5cdb3058f22b67f.tar.gz
sqlite-303aaa78f3225e30a05a853cd5cdb3058f22b67f.zip
add version numbering (CVS 132)
FossilOrigin-Name: 5ec2b094781bb3c32b0ef0284aa4dc2b26d9e873
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.h.in (renamed from src/sqlite.h)8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sqlite.h b/src/sqlite.h.in
index c05512ce6..0056c0d2f 100644
--- a/src/sqlite.h
+++ b/src/sqlite.h.in
@@ -24,12 +24,18 @@
** This header file defines the interface that the sqlite library
** presents to client programs.
**
-** @(#) $Id: sqlite.h,v 1.4 2000/07/28 14:32:50 drh Exp $
+** @(#) $Id: sqlite.h.in,v 1.1 2000/08/17 10:22:34 drh Exp $
*/
#ifndef _SQLITE_H_
#define _SQLITE_H_
/*
+** The version of the SQLite library
+*/
+#define SQLITE_VERSION --VERS--
+#define SQLITE_VERSION_STRING "--VERS--"
+
+/*
** Each open sqlite database is represented by an instance of the
** following opaque structure.
*/