summaryrefslogtreecommitdiff
path: root/static/netbsd/man3/SQLITE_VERSION.3
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 19:55:15 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 19:55:15 -0400
commit253e67c8b3a72b3a4757fdbc5845297628db0a4a (patch)
treeadf53b66087aa30dfbf8bf391a1dadb044c3bf4d /static/netbsd/man3/SQLITE_VERSION.3
parenta9157ce950dfe2fc30795d43b9d79b9d1bffc48b (diff)
docs: Added All NetBSD Manuals
Diffstat (limited to 'static/netbsd/man3/SQLITE_VERSION.3')
-rw-r--r--static/netbsd/man3/SQLITE_VERSION.346
1 files changed, 46 insertions, 0 deletions
diff --git a/static/netbsd/man3/SQLITE_VERSION.3 b/static/netbsd/man3/SQLITE_VERSION.3
new file mode 100644
index 00000000..88204bfa
--- /dev/null
+++ b/static/netbsd/man3/SQLITE_VERSION.3
@@ -0,0 +1,46 @@
+.Dd January 24, 2024
+.Dt SQLITE_VERSION 3
+.Os
+.Sh NAME
+.Nm SQLITE_VERSION ,
+.Nm SQLITE_VERSION_NUMBER ,
+.Nm SQLITE_SOURCE_ID
+.Nd compile-Time library version numbers
+.Sh SYNOPSIS
+.In sqlite3.h
+.Fd #define SQLITE_VERSION
+.Fd #define SQLITE_VERSION_NUMBER
+.Fd #define SQLITE_SOURCE_ID
+.Sh DESCRIPTION
+The SQLITE_VERSION C preprocessor macro in the sqlite3.h
+header evaluates to a string literal that is the SQLite version in
+the format "X.Y.Z" where X is the major version number (always 3 for
+SQLite3) and Y is the minor version number and Z is the release number.
+The SQLITE_VERSION_NUMBER C preprocessor macro
+resolves to an integer with the value (X*1000000 + Y*1000 + Z) where
+X, Y, and Z are the same numbers used in SQLITE_VERSION.
+The SQLITE_VERSION_NUMBER for any given release of SQLite will also
+be larger than the release from which it is derived.
+Either Y will be held constant and Z will be incremented or else Y
+will be incremented and Z will be reset to zero.
+.Pp
+Since version 3.6.18 (dateof:3.6.18), SQLite
+source code has been stored in the Fossil configuration management
+system.
+The SQLITE_SOURCE_ID macro evaluates to a string which identifies a
+particular check-in of SQLite within its configuration management system.
+The SQLITE_SOURCE_ID string contains the date and time of the check-in
+(UTC) and a SHA1 or SHA3-256 hash of the entire source tree.
+If the source code has been edited in any way since it was last checked
+in, then the last four hexadecimal digits of the hash may be modified.
+.Pp
+.Sh IMPLEMENTATION NOTES
+These declarations were extracted from the
+interface documentation at line 120.
+.Bd -literal
+#define SQLITE_VERSION "3.45.1"
+#define SQLITE_VERSION_NUMBER 3045001
+#define SQLITE_SOURCE_ID "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257cc467a"
+.Ed
+.Sh SEE ALSO
+.Xr sqlite3_version 3