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