28 lines
620 B
Groff
28 lines
620 B
Groff
.Dd March 11, 2017
|
|
.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
|