From 253e67c8b3a72b3a4757fdbc5845297628db0a4a Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 25 Apr 2026 19:55:15 -0400 Subject: docs: Added All NetBSD Manuals --- static/netbsd/man3/sqlite3_blob_bytes.3 | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 static/netbsd/man3/sqlite3_blob_bytes.3 (limited to 'static/netbsd/man3/sqlite3_blob_bytes.3') diff --git a/static/netbsd/man3/sqlite3_blob_bytes.3 b/static/netbsd/man3/sqlite3_blob_bytes.3 new file mode 100644 index 00000000..710e196f --- /dev/null +++ b/static/netbsd/man3/sqlite3_blob_bytes.3 @@ -0,0 +1,35 @@ +.Dd January 24, 2024 +.Dt SQLITE3_BLOB_BYTES 3 +.Os +.Sh NAME +.Nm sqlite3_blob_bytes +.Nd return the size of an open BLOB +.Sh SYNOPSIS +.In sqlite3.h +.Ft int +.Fo sqlite3_blob_bytes +.Fa "sqlite3_blob *" +.Fc +.Sh DESCRIPTION +Returns the size in bytes of the BLOB accessible via the successfully +opened BLOB handle in its only argument. +The incremental blob I/O routines can only read or overwriting existing +blob content; they cannot change the size of a blob. +.Pp +This routine only works on a BLOB handle which has been +created by a prior successful call to +.Fn sqlite3_blob_open +and which has not been closed by +.Fn sqlite3_blob_close . +Passing any other pointer in to this routine results in undefined and +probably undesirable behavior. +.Sh IMPLEMENTATION NOTES +These declarations were extracted from the +interface documentation at line 7824. +.Bd -literal +SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *); +.Ed +.Sh SEE ALSO +.Xr sqlite3_blob 3 , +.Xr sqlite3_blob_close 3 , +.Xr sqlite3_blob_open 3 -- cgit v1.2.3