SQLITE3_STRLIKE(3) Library Functions Manual SQLITE3_STRLIKE(3)

sqlite3_strlikestring LIKE matching

#include <sqlite3.h>

int
sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);

The sqlite3_strlike(P,X,E) function matches Unicode characters, though only ASCII characters are case folded.

Note that this routine returns zero on a match and non-zero if the strings do not match, the same as () and ().

These declarations were extracted from the interface documentation at line 9466.

SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);

sqlite3_strglob(3), sqlite3_stricmp(3)

January 24, 2024 NetBSD 11.0