1.Dd January 24, 2024 2.Dt SQLITE3_STRLIKE 3 3.Os 4.Sh NAME 5.Nm sqlite3_strlike 6.Nd string LIKE matching 7.Sh SYNOPSIS 8.In sqlite3.h 9.Ft int 10.Fo sqlite3_strlike 11.Fa "const char *zGlob" 12.Fa "const char *zStr" 13.Fa "unsigned int cEsc" 14.Fc 15.Sh DESCRIPTION 16The sqlite3_strlike(P,X,E) function matches Unicode 17characters, though only ASCII characters are case folded. 18.Pp 19Note that this routine returns zero on a match and non-zero if the 20strings do not match, the same as 21.Fn sqlite3_stricmp 22and 23.Fn sqlite3_strnicmp . 24.Sh IMPLEMENTATION NOTES 25These declarations were extracted from the 26interface documentation at line 9466. 27.Bd -literal 28SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc); 29.Ed 30.Sh SEE ALSO 31.Xr sqlite3_strglob 3 , 32.Xr sqlite3_stricmp 3 33