Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

.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