From 18657a960e125336f704ea058e25c27bd3900dcb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 19:28:19 +0200 Subject: Adding upstream version 3.40.1. Signed-off-by: Daniel Baumann --- www/c3ref/stricmp.html | 136 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 www/c3ref/stricmp.html (limited to 'www/c3ref/stricmp.html') diff --git a/www/c3ref/stricmp.html b/www/c3ref/stricmp.html new file mode 100644 index 0000000..5cd7985 --- /dev/null +++ b/www/c3ref/stricmp.html @@ -0,0 +1,136 @@ + + + + + +String Comparison + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

String Comparison

+
+
+int sqlite3_stricmp(const char *, const char *);
+int sqlite3_strnicmp(const char *, const char *, int);
+
+

+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. +

See also lists of + Objects, + Constants, and + Functions.

+ -- cgit v1.2.3