1.Dd March 11, 2017 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 10.Fo sqlite3_stricmp 11.Fa "const char *" 12.Fa "const char *" 13.Fc 14.Ft int 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