aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2012-03-19 17:42:46 +0000
committerdrh <drh@noemail.net>2012-03-19 17:42:46 +0000
commit0299b40f0fa6ae9de1af5dd1c15cb64fc7797a1a (patch)
tree2cf687720300a50b72c8cf9f4d1288c456bea705 /src
parentd13a3bc772e5c57dcd3d8f084b37b2bc1f0d8757 (diff)
downloadsqlite-0299b40f0fa6ae9de1af5dd1c15cb64fc7797a1a.tar.gz
sqlite-0299b40f0fa6ae9de1af5dd1c15cb64fc7797a1a.zip
Add additional test cases to e_insert.test. Update evidence marks.
no changes to core code. FossilOrigin-Name: 036395c0a8e08883b11df025e3da9e2461e4b1eb
Diffstat (limited to 'src')
-rw-r--r--src/util.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util.c b/src/util.c
index 325c75aae..dd3b08ae4 100644
--- a/src/util.c
+++ b/src/util.c
@@ -216,11 +216,11 @@ int sqlite3Dequote(char *z){
** Some systems have stricmp(). Others have strcasecmp(). Because
** there is no consistency, we will define our own.
**
-** IMPLEMENTATION-OF: R-20522-24639 The sqlite3_strnicmp() API allows
-** 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.
+** IMPLEMENTATION-OF: R-30243-02494 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.
*/
int sqlite3_stricmp(const char *zLeft, const char *zRight){
register unsigned char *a, *b;