xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_strglob.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE3_STRGLOB 3
3.Os
4.Sh NAME
5.Nm sqlite3_strglob
6.Nd string globbing
7.Sh SYNOPSIS
8.In sqlite3.h
9.Ft int
10.Fo sqlite3_strglob
11.Fa "const char *zGlob"
12.Fa "const char *zStr"
13.Fc
14.Sh DESCRIPTION
15Note that this routine returns zero on a match and non-zero if the
16strings do not match, the same as
17.Fn sqlite3_stricmp
18and
19.Fn sqlite3_strnicmp .
20.Sh IMPLEMENTATION NOTES
21These declarations were extracted from the
22interface documentation at line 9449.
23.Bd -literal
24SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr);
25.Ed
26.Sh SEE ALSO
27.Xr sqlite3_stricmp 3 ,
28.Xr sqlite3_strlike 3
29