xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_strlike.3 (revision 8ecbf5f02b752fcb7debe1a8fab1dc82602bc760)
1.Dd December 19, 2018
2.Dt SQLITE3_STRLIKE 3
3.Os
4.Sh NAME
5.Nm sqlite3_strlike
6.Nd String LIKE Matching
7.Sh SYNOPSIS
8.Ft int
9.Fo sqlite3_strlike
10.Fa "const char *zGlob"
11.Fa "const char *zStr"
12.Fa "unsigned int cEsc"
13.Fc
14.Sh DESCRIPTION
15The sqlite3_strlike(P,X,E) function matches Unicode
16characters, though only ASCII characters are case folded.
17.Pp
18Note that this routine returns zero on a match and non-zero if the
19strings do not match, the same as sqlite3_stricmp()
20and sqlite3_strnicmp().
21.Pp
22.Sh SEE ALSO
23.Xr sqlite3_strglob 3 ,
24.Xr sqlite3_stricmp 3
25