xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_stricmp.3 (revision b83ebeba7f767758d2778bb0f9d7a76534253621)
1.Dd $Mdocdate$
2.Dt SQLITE3_STRICMP 3
3.Os
4.Sh NAME
5.Nm sqlite3_stricmp ,
6.Nm sqlite3_strnicmp
7.Nd String Comparison
8.Sh SYNOPSIS
9.Ft int SQLITE_STDCALL
10.Fo sqlite3_stricmp
11.Fa "const char *"
12.Fa "const char *"
13.Fc
14.Ft int SQLITE_STDCALL
15.Fo sqlite3_strnicmp
16.Fa "const char *"
17.Fa "const char *"
18.Fa "int"
19.Fc
20.Sh DESCRIPTION
21The sqlite3_stricmp() and sqlite3_strnicmp()
22APIs allow applications and extensions to compare the contents of two
23buffers containing UTF-8 strings in a case-independent fashion, using
24the same definition of "case independence" that SQLite uses internally
25when comparing identifiers.
26.Sh SEE ALSO
27.Xr sqlite3_stricmp 3
28