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_strlike.3 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 static/netbsd/man3/sqlite3_strlike.3 (limited to 'static/netbsd/man3/sqlite3_strlike.3') diff --git a/static/netbsd/man3/sqlite3_strlike.3 b/static/netbsd/man3/sqlite3_strlike.3 new file mode 100644 index 00000000..614a4b86 --- /dev/null +++ b/static/netbsd/man3/sqlite3_strlike.3 @@ -0,0 +1,32 @@ +.Dd January 24, 2024 +.Dt SQLITE3_STRLIKE 3 +.Os +.Sh NAME +.Nm sqlite3_strlike +.Nd string LIKE matching +.Sh SYNOPSIS +.In sqlite3.h +.Ft int +.Fo sqlite3_strlike +.Fa "const char *zGlob" +.Fa "const char *zStr" +.Fa "unsigned int cEsc" +.Fc +.Sh DESCRIPTION +The sqlite3_strlike(P,X,E) function matches Unicode +characters, though only ASCII characters are case folded. +.Pp +Note that this routine returns zero on a match and non-zero if the +strings do not match, the same as +.Fn sqlite3_stricmp +and +.Fn sqlite3_strnicmp . +.Sh IMPLEMENTATION NOTES +These declarations were extracted from the +interface documentation at line 9466. +.Bd -literal +SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc); +.Ed +.Sh SEE ALSO +.Xr sqlite3_strglob 3 , +.Xr sqlite3_stricmp 3 -- cgit v1.2.3